Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
run: just test

- name: ⬆️ Upload coverage report
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: test-coverage
path: coverage/
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
run: just build

- name: ⬆️ Upload static website artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: blog-${{ github.sha }}
path: dist/blog
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
run: npx playwright install chrome

- name: ⬇️ Download generated distribution
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
with:
name: blog-${{ github.sha }}
path: dist/blog
Expand All @@ -248,7 +248,7 @@ jobs:

- name: ⬆️ Upload coverage report
if: matrix.browser == 'chromium'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: test-e2e-coverage-${{ matrix.browser }}
path: e2e-tests-report/coverage/ui-lcov.info
Expand Down Expand Up @@ -277,13 +277,13 @@ jobs:
fetch-depth: 0

- name: ⬇️ Download test coverage report
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
with:
name: test-coverage
path: coverage/

- name: ⬇️ Download test-e2e coverage report
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
with:
name: test-e2e-coverage-chromium
path: e2e-tests-report/coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
publish_results: true

- name: ⬆️ Upload artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
with:
name: SARIF file
path: results.sarif
Expand Down