Skip to content

Commit ee39de6

Browse files
chore(deps): bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 45e1f48 commit ee39de6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/flaky.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
echo TESTS_RESULT=$result
6060
echo "TESTS_RESULT=$result" >>"$GITHUB_ENV"
6161
- name: download nextest reports
62-
uses: actions/download-artifact@v5
62+
uses: actions/download-artifact@v6
6363
with:
6464
pattern: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-*
6565
merge-multiple: true

.github/workflows/netsim_runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
191191
- name: Upload report
192192
if: always()
193-
uses: actions/upload-artifact@v4
193+
uses: actions/upload-artifact@v5
194194
id: upload-report
195195
with:
196196
name: netsim-report-${{ env.LAST_COMMIT_SHA }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,15 +190,15 @@ jobs:
190190

191191
- name: attach artifacts
192192
if: matrix.os != 'windows-latest'
193-
uses: actions/upload-artifact@v4
193+
uses: actions/upload-artifact@v5
194194
with:
195195
name: iroh-${{env.RELEASE_OS }}-${{env.RELEASE_ARCH}}
196196
path: target/${{ matrix.cargo_targets }}/optimized-release/iroh
197197
compression-level: 0
198198

199199
- name: attach artifacts
200200
if: matrix.os == 'windows-latest'
201-
uses: actions/upload-artifact@v4
201+
uses: actions/upload-artifact@v5
202202
with:
203203
name: iroh-windows-amd64.exe
204204
path: target/${{ matrix.cargo_targets }}/optimized-release/iroh.exe
@@ -283,7 +283,7 @@ jobs:
283283
asset_path: ${{ env.ASSET }}
284284

285285
- name: attach artifacts
286-
uses: actions/upload-artifact@v4
286+
uses: actions/upload-artifact@v5
287287
if : matrix.os != 'windows-latest'
288288
with:
289289
name: iroh-${{ matrix.release-os }}-${{ matrix.release-arch }}-bundle
@@ -292,7 +292,7 @@ jobs:
292292
retention-days: 1
293293

294294
- name: attach artifacts
295-
uses: actions/upload-artifact@v4
295+
uses: actions/upload-artifact@v5
296296
if : matrix.os == 'windows-latest'
297297
with:
298298
name: iroh-${{ matrix.release-os }}-${{ matrix.release-arch }}-bundle

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118

119119
- name: upload results
120120
if: ${{ failure() && inputs.flaky }}
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v5
122122
with:
123123
name: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
124124
path: output
@@ -230,7 +230,7 @@ jobs:
230230

231231
- name: upload results
232232
if: ${{ failure() && inputs.flaky }}
233-
uses: actions/upload-artifact@v4
233+
uses: actions/upload-artifact@v5
234234
with:
235235
name: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-${{ matrix.name }}_${{ matrix.features }}_${{ matrix.rust }}.json
236236
path: output

0 commit comments

Comments
 (0)