Skip to content

Commit

Permalink
Merge pull request #7619 from radarhere/github-actions
Browse files Browse the repository at this point in the history
Update actions/upload-artifact action to v4
  • Loading branch information
radarhere committed Dec 15, 2023
2 parents e5ee034 + 28c9501 commit e1a2ad1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cifuzz.yml
Expand Up @@ -42,13 +42,13 @@ jobs:
language: python
dry-run: false
- name: Upload New Crash
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts
- name: Upload Legacy Crash
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: steps.run.outcome == 'success'
with:
name: crash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cygwin.yml
Expand Up @@ -132,7 +132,7 @@ jobs:
dash.exe -c "mkdir -p Tests/errors"
- name: Upload errors
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: errors
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-windows.yml
Expand Up @@ -190,7 +190,7 @@ jobs:
shell: bash

- name: Upload errors
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: errors
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -112,7 +112,7 @@ jobs:
mkdir -p Tests/errors
- name: Upload errors
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: errors
Expand Down

0 comments on commit e1a2ad1

Please sign in to comment.