Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6bd4ed6

Browse files
committedDec 30, 2024··
Updates Upload Artifact Action
Updates the upload-artifact action to v4. Specifies some additional options.
1 parent 353c0d2 commit 6bd4ed6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎.github/workflows/code-checks.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ jobs:
3636
run: npm install
3737
working-directory: ./project
3838
- name: Upload Artifacts
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: project-files
4242
path: ./project
43+
retention-days: 1
44+
compression-level: 4
45+
overwrite: true
4346

4447
lint:
4548
name: Linter

0 commit comments

Comments
 (0)
Please sign in to comment.