Skip to content

Commit 62b27a7

Browse files
ci(deps): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [rustsec/audit-check](https://github.com/rustsec/audit-check) | `1.4.1` | `2.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4` | `5` | 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/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `rustsec/audit-check` from 1.4.1 to 2.0.0 - [Release notes](https://github.com/rustsec/audit-check/releases) - [Changelog](https://github.com/rustsec/audit-check/blob/master/CHANGELOG.md) - [Commits](rustsec/audit-check@v1.4.1...v2.0.0) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4...v5) --- 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/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: rustsec/audit-check dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8815fee commit 62b27a7

File tree

3 files changed

+28
-28
lines changed

3 files changed

+28
-28
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Install Rust MSRV
2222
uses: dtolnay/rust-toolchain@stable
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141

4242
- name: Install Rust nightly
4343
uses: dtolnay/rust-toolchain@nightly
@@ -52,15 +52,15 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- name: Checkout
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v6
5656

5757
- name: Install Rust stable
5858
uses: dtolnay/rust-toolchain@stable
5959
with:
6060
components: clippy
6161

6262
- name: Cache cargo registry
63-
uses: actions/cache@v4
63+
uses: actions/cache@v5
6464
with:
6565
path: |
6666
~/.cargo/registry
@@ -87,15 +87,15 @@ jobs:
8787

8888
steps:
8989
- name: Checkout
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v6
9191

9292
- name: Install Rust ${{ matrix.rust }}
9393
uses: dtolnay/rust-toolchain@master
9494
with:
9595
toolchain: ${{ matrix.rust }}
9696

9797
- name: Cache cargo registry
98-
uses: actions/cache@v4
98+
uses: actions/cache@v5
9999
with:
100100
path: |
101101
~/.cargo/registry
@@ -114,13 +114,13 @@ jobs:
114114
runs-on: ubuntu-latest
115115
steps:
116116
- name: Checkout
117-
uses: actions/checkout@v4
117+
uses: actions/checkout@v6
118118

119119
- name: Install Rust stable
120120
uses: dtolnay/rust-toolchain@stable
121121

122122
- name: Cache cargo registry
123-
uses: actions/cache@v4
123+
uses: actions/cache@v5
124124
with:
125125
path: |
126126
~/.cargo/registry
@@ -136,13 +136,13 @@ jobs:
136136
runs-on: ubuntu-latest
137137
steps:
138138
- name: Checkout
139-
uses: actions/checkout@v4
139+
uses: actions/checkout@v6
140140

141141
- name: Install Rust nightly
142142
uses: dtolnay/rust-toolchain@nightly
143143

144144
- name: Cache cargo registry
145-
uses: actions/cache@v4
145+
uses: actions/cache@v5
146146
with:
147147
path: |
148148
~/.cargo/registry
@@ -163,13 +163,13 @@ jobs:
163163
runs-on: ubuntu-latest
164164
steps:
165165
- name: Checkout
166-
uses: actions/checkout@v4
166+
uses: actions/checkout@v6
167167

168168
- name: Install Rust stable
169169
uses: dtolnay/rust-toolchain@stable
170170

171171
- name: Security audit
172-
uses: rustsec/audit-check@v1.4.1
172+
uses: rustsec/audit-check@v2.0.0
173173
with:
174174
token: ${{ secrets.GITHUB_TOKEN }}
175175

@@ -178,7 +178,7 @@ jobs:
178178
runs-on: ubuntu-latest
179179
steps:
180180
- name: Checkout
181-
uses: actions/checkout@v4
181+
uses: actions/checkout@v6
182182

183183
- name: Install Rust stable
184184
uses: dtolnay/rust-toolchain@stable
@@ -193,7 +193,7 @@ jobs:
193193
run: cargo cyclonedx --format json --override-filename rsdo-sbom.json
194194

195195
- name: Upload SBOM JSON artifact
196-
uses: actions/upload-artifact@v4
196+
uses: actions/upload-artifact@v6
197197
with:
198198
name: rsdo-sbom-json
199199
path: rsdo-sbom.json
@@ -203,7 +203,7 @@ jobs:
203203
run: cargo cyclonedx --format xml --override-filename rsdo-sbom.xml
204204

205205
- name: Upload SBOM XML artifact
206-
uses: actions/upload-artifact@v4
206+
uses: actions/upload-artifact@v6
207207
with:
208208
name: rsdo-sbom-xml
209209
path: rsdo-sbom.xml
@@ -214,7 +214,7 @@ jobs:
214214
runs-on: ubuntu-latest
215215
steps:
216216
- name: Checkout
217-
uses: actions/checkout@v4
217+
uses: actions/checkout@v6
218218

219219
- name: Install Rust stable
220220
uses: dtolnay/rust-toolchain@stable
@@ -231,7 +231,7 @@ jobs:
231231
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
232232

233233
- name: Upload coverage to Codecov
234-
uses: codecov/codecov-action@v4
234+
uses: codecov/codecov-action@v5
235235
with:
236236
files: lcov.info
237237
fail_ci_if_error: false

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
- name: Install Rust stable
2525
uses: dtolnay/rust-toolchain@stable
2626

2727
- name: Cache cargo registry
28-
uses: actions/cache@v4
28+
uses: actions/cache@v5
2929
with:
3030
path: |
3131
~/.cargo/registry

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444
token: ${{ secrets.GITHUB_TOKEN }}
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Cache cargo registry
6262
if: steps.check.outputs.should_release == 'true'
63-
uses: actions/cache@v4
63+
uses: actions/cache@v5
6464
with:
6565
path: |
6666
~/.cargo/registry
@@ -103,7 +103,7 @@ jobs:
103103

104104
steps:
105105
- name: Checkout
106-
uses: actions/checkout@v4
106+
uses: actions/checkout@v6
107107
with:
108108
ref: ${{ needs.check-and-release.outputs.tag_name }}
109109

@@ -121,7 +121,7 @@ jobs:
121121
components: rustfmt
122122

123123
- name: Cache cargo registry
124-
uses: actions/cache@v4
124+
uses: actions/cache@v5
125125
with:
126126
path: |
127127
~/.cargo/registry
@@ -154,15 +154,15 @@ jobs:
154154

155155
steps:
156156
- name: Checkout
157-
uses: actions/checkout@v4
157+
uses: actions/checkout@v6
158158
with:
159159
ref: ${{ needs.check-and-release.outputs.tag_name }}
160160

161161
- name: Install Rust stable
162162
uses: dtolnay/rust-toolchain@stable
163163

164164
- name: Cache cargo registry
165-
uses: actions/cache@v4
165+
uses: actions/cache@v5
166166
with:
167167
path: |
168168
~/.cargo/registry
@@ -187,15 +187,15 @@ jobs:
187187

188188
steps:
189189
- name: Checkout
190-
uses: actions/checkout@v4
190+
uses: actions/checkout@v6
191191
with:
192192
ref: ${{ needs.check-and-release.outputs.tag_name }}
193193

194194
- name: Install Rust stable
195195
uses: dtolnay/rust-toolchain@stable
196196

197197
- name: Cache cargo registry and target
198-
uses: actions/cache@v4
198+
uses: actions/cache@v5
199199
with:
200200
path: |
201201
~/.cargo/registry
@@ -207,7 +207,7 @@ jobs:
207207
208208
- name: Cache cargo-cyclonedx installation
209209
id: cache-cyclonedx
210-
uses: actions/cache@v4
210+
uses: actions/cache@v5
211211
with:
212212
path: ~/.cargo/bin/cargo-cyclonedx
213213
key: ${{ runner.os }}-cargo-cyclonedx-0.5.7

0 commit comments

Comments
 (0)