Skip to content

Commit c9414af

Browse files
authored
Merge pull request #9509 from scratchfoundation/renovate/major-github-artifact-actions
chore(deps): update actions/upload-artifact action to v4
2 parents 3f63ee7 + 004f092 commit c9414af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ jobs:
5151
NODE_ENV: production
5252
run: npm run build
5353
- name: Store Build Output
54-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
54+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
5555
with:
5656
name: build-output
5757
path: ./build
5858
- name: Store Dist Output
59-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
59+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
6060
with:
6161
name: dist-output
6262
path: ./dist
@@ -71,7 +71,7 @@ jobs:
7171
run: npm run test:integration -- --reporters="default" --reporters="jest-junit"
7272
- name: Store Test Results
7373
if: always() # Even if tests fail
74-
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
74+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
7575
with:
7676
name: test-output
7777
path: ./test-results/* # Both unit and integration test results

0 commit comments

Comments
 (0)