Skip to content

Commit 0e8e85c

Browse files
authored
Merge pull request #6233 from mozilla/dependabot/github_actions/actions/upload-artifact-5
chore(deps): bump actions/upload-artifact from 4 to 5
2 parents 92b38a6 + 776160a commit 0e8e85c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/functional_tests_cron.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ jobs:
6767
E2E_TEST_SECRET: ${{ secrets.E2E_TEST_SECRET }}
6868
E2E_TEST_ACCOUNT_BASE_EMAIL: ${{ secrets.E2E_TEST_ACCOUNT_BASE_EMAIL }}
6969
E2E_TEST_ACCOUNT_BASE_PASSWORD: ${{ secrets.E2E_TEST_ACCOUNT_BASE_PASSWORD }}
70-
- uses: actions/upload-artifact@v4
70+
- uses: actions/upload-artifact@v5
7171
if: always()
7272
with:
7373
name: playwright-report-${{ github.event_name == 'workflow_dispatch' && inputs.test_env || matrix.test_env }}
7474
path: playwright-report/
7575
retention-days: 30
76-
- uses: actions/upload-artifact@v4
76+
- uses: actions/upload-artifact@v5
7777
if: always()
7878
with:
7979
name: test-results-${{ github.event_name == 'workflow_dispatch' && inputs.test_env || matrix.test_env }}

.github/workflows/functional_tests_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ jobs:
8686
PREMIUM_PLAN_ID_YEARLY_US: ${{ secrets.STAGE_PREMIUM_PLAN_ID_YEARLY_US }}
8787
PREMIUM_PRODUCT_ID: ${{ secrets.STAGE_PREMIUM_PRODUCT_ID }}
8888
REDIS_URL: "redis://redis.mock"
89-
- uses: actions/upload-artifact@v4
89+
- uses: actions/upload-artifact@v5
9090
if: always()
9191
with:
9292
name: playwright-report
9393
path: playwright-report/
9494
retention-days: 30
95-
- uses: actions/upload-artifact@v4
95+
- uses: actions/upload-artifact@v5
9696
if: always()
9797
with:
9898
name: test-results

.github/workflows/unittests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# (and set an arbitrary coverage threshold for that "true" coverage):
3434
- run: npm test -- --coverageThreshold='{"global":{"branches":80,"functions":80,"lines":80,"statements":80}}'
3535
if: github.event_name == 'schedule'
36-
- uses: actions/upload-artifact@v4
36+
- uses: actions/upload-artifact@v5
3737
if: always()
3838
with:
3939
name: coverage-report

0 commit comments

Comments
 (0)