Skip to content

Commit 0952415

Browse files
dependabot[bot]cesnietorramondeklein
authored
Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#3433)
* Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Use latest v4 instead of a specific version * upgrade to `actions/upload-artifact@v4` --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cesar N. <11819101+cesnietor@users.noreply.github.com> Co-authored-by: Ramon de Klein <mail@ramondeklein.nl>
1 parent 339885b commit 0952415

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/jobs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ jobs:
977977

978978
# To save our replication.out file into an artifact.
979979
# By default, GitHub stores build logs and artifacts for 90 days.
980-
- uses: actions/upload-artifact@v3
980+
- uses: actions/upload-artifact@v4
981981
with:
982982
name: replication-artifact
983983
path: ./replication/coverage/replication.out
@@ -1135,7 +1135,7 @@ jobs:
11351135
key: ${{ runner.os }}-coverage-pkg-2-${{ github.run_id }}
11361136

11371137
# Get the replication.out file from the artifact since this is working for self host runner.
1138-
- uses: actions/download-artifact@v3
1138+
- uses: actions/download-artifact@v4
11391139
with:
11401140
name: replication-artifact
11411141
path: replication/coverage
@@ -1483,13 +1483,13 @@ jobs:
14831483
npx nyc report # To see report printed in logs as text
14841484
echo "npx nyc report --reporter=html"
14851485
npx nyc report --reporter=html # to see report in ./coverage/index.html
1486-
- uses: actions/upload-artifact@v3
1486+
- uses: actions/upload-artifact@v4
14871487
if: always()
14881488
with:
14891489
name: playwright-report
14901490
path: playwright-report/
14911491
retention-days: 30
1492-
- uses: actions/upload-artifact@v3
1492+
- uses: actions/upload-artifact@v4
14931493
if: always()
14941494
with:
14951495
name: coverage

web-app/playwright/jobs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,13 @@ jobs:
213213
npx nyc report # To see report printed in logs as text
214214
echo "npx nyc report --reporter=html"
215215
npx nyc report --reporter=html # to see report in ./coverage/index.html
216-
- uses: actions/upload-artifact@v3
216+
- uses: actions/upload-artifact@v4
217217
if: always()
218218
with:
219219
name: playwright-report
220220
path: playwright-report/
221221
retention-days: 30
222-
- uses: actions/upload-artifact@v3
222+
- uses: actions/upload-artifact@v4
223223
if: always()
224224
with:
225225
name: coverage

0 commit comments

Comments
 (0)