Skip to content

Commit b31db3c

Browse files
ci(deps): bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 91bb3ea commit b31db3c

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929

3030
- name: Install Rust (${{ matrix.rust }})
3131
uses: actions-rust-lang/setup-rust-toolchain@v1
@@ -74,7 +74,7 @@ jobs:
7474
RUSTC_BOOTSTRAP: ${{ matrix.rustc_bootstrap }}
7575
steps:
7676
- name: Checkout
77-
uses: actions/checkout@v4
77+
uses: actions/checkout@v6
7878

7979
- name: Install Rust (${{ matrix.rust }})
8080
uses: actions-rust-lang/setup-rust-toolchain@v1
@@ -126,7 +126,7 @@ jobs:
126126
127127
- name: Upload Binaries as GitHub artifact
128128
if: matrix.rust == 'nightly'
129-
uses: actions/upload-artifact@v4.6.0
129+
uses: actions/upload-artifact@v7
130130
with:
131131
name: git-remote-codecommit-${{ matrix.os }}
132132
path: |
@@ -146,7 +146,7 @@ jobs:
146146
147147
- name: Upload Documentation as GitHub artifact
148148
if: ${{ matrix.os == 'ubuntu-latest' && matrix.rust == 'nightly'}}
149-
uses: actions/upload-artifact@v4.6.0
149+
uses: actions/upload-artifact@v7
150150
with:
151151
name: docs
152152
path: target/doc
@@ -192,14 +192,14 @@ jobs:
192192
193193
- name: Upload out if failed
194194
if: failure()
195-
uses: actions/upload-artifact@v4
195+
uses: actions/upload-artifact@v7
196196
with:
197197
name: coverage-failure-${{ matrix.rust }}-${{ matrix.os }}${{ matrix.rust != 'nightly' && matrix.rustc_bootstrap == '1' && '-bootstrap' || '' }}
198198
path: target/debug/build/git-remote-codecommit-*
199199
retention-days: 1
200200

201201
- name: Archive code coverage results
202-
uses: actions/upload-artifact@v4
202+
uses: actions/upload-artifact@v7
203203
with:
204204
name: code-coverage-report-${{ matrix.rust }}-${{ matrix.os }}${{ matrix.rust != 'nightly' && matrix.rustc_bootstrap == '1' && '-bootstrap' || '' }}
205205
path: target/debug/coverage/html/
@@ -226,7 +226,7 @@ jobs:
226226
runs-on: ubuntu-latest
227227
steps:
228228
- name: Checkout
229-
uses: actions/checkout@v4
229+
uses: actions/checkout@v6
230230
- name: Set carryforward
231231
id: set_carryforward
232232
run: |
@@ -250,7 +250,7 @@ jobs:
250250
AWS_REGION: us-west-2
251251
steps:
252252
- name: Checkout
253-
uses: actions/checkout@v4
253+
uses: actions/checkout@v6
254254
with:
255255
fetch-depth: 0 # need the history in order to push to CodeCommit
256256

@@ -261,7 +261,7 @@ jobs:
261261
aws-region: ${{ env.AWS_REGION }}
262262

263263
- name: Download git-remote-codecommit
264-
uses: actions/download-artifact@v4
264+
uses: actions/download-artifact@v8
265265
with:
266266
name: git-remote-codecommit-ubuntu-latest
267267
path: target/release-lto

0 commit comments

Comments
 (0)