Skip to content

Commit d8345e1

Browse files
build(deps): bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4d7955a commit d8345e1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/coveo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Upload token for ${{matrix.env_name}}
6969
if: ${{ steps.generate-token.outcome == 'success' }}
70-
uses: actions/upload-artifact@v4
70+
uses: actions/upload-artifact@v5
7171
with:
7272
name: ${{matrix.env_name}}
7373
path: "./"

.github/workflows/ossf_scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF format to the repository Actions tab.
5050
- name: Upload artifact
51-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5252
with:
5353
name: SARIF file
5454
path: results.sarif

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
run: npx playwright install --with-deps
1919
- name: Run Playwright tests
2020
run: npx playwright test --retries=2
21-
- uses: actions/upload-artifact@v4
21+
- uses: actions/upload-artifact@v5
2222
if: ${{ !cancelled() }}
2323
with:
2424
name: playwright-report
2525
path: tests/playwright-report/
2626
retention-days: 30
27-
- uses: actions/upload-artifact@v4
27+
- uses: actions/upload-artifact@v5
2828
if: ${{ !cancelled() }}
2929
with:
3030
name: test-results

0 commit comments

Comments
 (0)