Skip to content

Commit da9ef06

Browse files
chore(deps): bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5903bff commit da9ef06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/01-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: npm run deploy:pages
1919

2020
- name: ⬆️Upload build
21-
uses: actions/upload-artifact@v3
21+
uses: actions/upload-artifact@v4
2222
with:
2323
name: build
2424
path: out

.github/workflows/01-cypress.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
config: pageLoadTimeout=100000,baseUrl=http://localhost:8080
3434

3535
- name: 🛗 Upload Artifacts
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
# after the test run completes
3838
# store videos and any screenshots
3939
# NOTE: screenshots will be generated only if an E2E test failed
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
name: cypress-screenshots
4444
path: e2e/cypress/screenshots
45-
- uses: actions/upload-artifact@v3
45+
- uses: actions/upload-artifact@v4
4646
# Test run video was always captured, so this action uses "always()" condition
4747
if: always()
4848
with:

0 commit comments

Comments
 (0)