Skip to content

Commit e1a2ad1

Browse files
authored
Merge pull request #7619 from radarhere/github-actions
Update actions/upload-artifact action to v4
2 parents e5ee034 + 28c9501 commit e1a2ad1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/cifuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
language: python
4343
dry-run: false
4444
- name: Upload New Crash
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
if: failure() && steps.build.outcome == 'success'
4747
with:
4848
name: artifacts
4949
path: ./out/artifacts
5050
- name: Upload Legacy Crash
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
if: steps.run.outcome == 'success'
5353
with:
5454
name: crash

.github/workflows/test-cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
dash.exe -c "mkdir -p Tests/errors"
133133
134134
- name: Upload errors
135-
uses: actions/upload-artifact@v3
135+
uses: actions/upload-artifact@v4
136136
if: failure()
137137
with:
138138
name: errors

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
shell: bash
191191

192192
- name: Upload errors
193-
uses: actions/upload-artifact@v3
193+
uses: actions/upload-artifact@v4
194194
if: failure()
195195
with:
196196
name: errors

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
mkdir -p Tests/errors
113113
114114
- name: Upload errors
115-
uses: actions/upload-artifact@v3
115+
uses: actions/upload-artifact@v4
116116
if: failure()
117117
with:
118118
name: errors

0 commit comments

Comments
 (0)