Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
exit 0

- name: 💾 Upload Coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runner-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
echo "#### ✅ Published \`extester-runner-${VERSION}.vsix\` to Open VSX Registry" >> $GITHUB_STEP_SUMMARY

- name: 💾 Upload VSIX
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: extester-runner-${{ env.VERSION }}.vsix
path: packages/extester-runner/extester-runner-${{ env.VERSION }}.vsix
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runner-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: vsce ls extester-runner-${{ steps.version.outputs.version }}.vsix

- name: 💾 Upload VSIX
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: extester-runner-${{ steps.version.outputs.version }}.vsix
path: packages/extester-runner/extester-runner-${{ steps.version.outputs.version }}.vsix
4 changes: 2 additions & 2 deletions .github/workflows/template-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ jobs:
command: xvfb-run --auto-servernum --server-args='-screen 0 1920x1080x24' npm test

- name: 💾 Upload Screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure() && inputs.nodejs != 'lts/*'
with:
name: screenshots-${{ matrix.os }}-${{ inputs.version }}-node_${{ inputs.nodejs }}
path: ${{ github.workspace }}/tests/**/screenshots/**/*.png

- name: 💾 Upload Screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure() && inputs.nodejs == 'lts/*'
with:
name: screenshots-${{ matrix.os }}-${{ inputs.version }}-node_lts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/template-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ jobs:
command: xvfb-run --auto-servernum --server-args='-screen 0 1920x1080x24' npm run test:runner:ui

- name: 💾 Upload Screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure() && inputs.nodejs != 'lts/*'
with:
name: runner-screenshots-${{ matrix.os }}-${{ inputs.version }}-node_${{ inputs.nodejs }}
path: ${{ github.workspace }}/packages/extester-runner/**/screenshots/**/*.png

- name: 💾 Upload Screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure() && inputs.nodejs == 'lts/*'
with:
name: runner-screenshots-${{ matrix.os }}-${{ inputs.version }}-node_lts
Expand Down
Loading