Skip to content

Commit 58b7607

Browse files
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 6f62691 commit 58b7607

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/bash.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
8686
- name: Upload artifact
8787
if: failure()
88-
uses: actions/upload-artifact@v3
88+
uses: actions/upload-artifact@v4
8989
with:
9090
name: Upload cylc-run artifact
9191
path: cylc-run

.github/workflows/test_fast.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: Upload failed tests artifact
7272
if: failure()
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: cylc-run (${{ matrix.os }} py-${{ matrix.python-version }})
7676
path: ~/cylc-run/
@@ -81,7 +81,7 @@ jobs:
8181
coverage report
8282
8383
- name: Upload coverage artifact
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: coverage_${{ matrix.os }}_py-${{ matrix.python-version }}
8787
path: coverage.xml

.github/workflows/test_functional.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ jobs:
259259
260260
- name: Upload failed tests artifact
261261
if: failure() && steps.test.outcome == 'failure'
262-
uses: actions/upload-artifact@v3
262+
uses: actions/upload-artifact@v4
263263
with:
264264
name: cylc-run (${{ steps.uploadname.outputs.uploadname }})
265265
path: ~/cylc-run/
@@ -297,7 +297,7 @@ jobs:
297297
coverage report
298298
299299
- name: Upload coverage artifact
300-
uses: actions/upload-artifact@v3
300+
uses: actions/upload-artifact@v4
301301
with:
302302
name: coverage_${{ steps.uploadname.outputs.uploadname }}
303303
path: coverage.xml

0 commit comments

Comments
 (0)