Skip to content

Commit e919488

Browse files
build(deps): bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [cargo-bins/cargo-binstall](https://github.com/cargo-bins/cargo-binstall), [rust-lang/crates-io-auth-action](https://github.com/rust-lang/crates-io-auth-action) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 6.0.3 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.3...v7.0.0) Updates `cargo-bins/cargo-binstall` from 1.20.0 to 1.20.1 - [Release notes](https://github.com/cargo-bins/cargo-binstall/releases) - [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/release-plz.toml) - [Commits](cargo-bins/cargo-binstall@30b5ca8...732870f) Updates `rust-lang/crates-io-auth-action` from 1.0.4 to 1.0.5 - [Release notes](https://github.com/rust-lang/crates-io-auth-action/releases) - [Commits](rust-lang/crates-io-auth-action@bbd8162...c6f97d4) Updates `actions/setup-python` from 6 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v6.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: cargo-bins/cargo-binstall dependency-version: 1.20.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: rust-lang/crates-io-auth-action dependency-version: 1.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 115cdcf commit e919488

8 files changed

Lines changed: 40 additions & 40 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
BIN: target/release/cpp-linter
4545
steps:
4646
- name: Checkout ${{ matrix.name }}
47-
uses: actions/checkout@v6.0.3
47+
uses: actions/checkout@v7.0.0
4848
with:
4949
ref: ${{ matrix.commit }}
5050
persist-credentials: false
@@ -82,7 +82,7 @@ jobs:
8282
# build-py-binding:
8383
# runs-on: ubuntu-latest
8484
# steps:
85-
# - uses: actions/checkout@v6.0.3
85+
# - uses: actions/checkout@v7.0.0
8686
# with:
8787
# persist-credentials: false
8888
# - name: Set up Python
@@ -112,11 +112,11 @@ jobs:
112112
needs: [build-bin] #, build-py-binding]
113113
runs-on: ubuntu-latest
114114
steps:
115-
- uses: actions/checkout@v6.0.3
115+
- uses: actions/checkout@v7.0.0
116116
with:
117117
persist-credentials: false
118118
- name: Checkout libgit2
119-
uses: actions/checkout@v6.0.3
119+
uses: actions/checkout@v7.0.0
120120
with:
121121
repository: libgit2/libgit2
122122
ref: v1.8.1
@@ -127,7 +127,7 @@ jobs:
127127
uses: actions/download-artifact@v8
128128

129129
- name: Install cargo-binstall
130-
uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
130+
uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
131131
env:
132132
GITHUB_TOKEN: ${{ github.token }}
133133
- name: Install hyperfine

.github/workflows/binary-builds.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
contents: write
9696
steps:
9797
- name: Checkout
98-
uses: actions/checkout@v6.0.3
98+
uses: actions/checkout@v7.0.0
9999
with:
100100
persist-credentials: false
101101

@@ -109,7 +109,7 @@ jobs:
109109
110110
- name: Install cargo-binstall
111111
if: matrix.cross
112-
uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
112+
uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
113113
env:
114114
GITHUB_TOKEN: ${{ github.token }}
115115
- name: Install cross (cargo cross compiler)
@@ -191,7 +191,7 @@ jobs:
191191
id-token: write
192192
contents: write
193193
steps:
194-
- uses: actions/checkout@v6.0.3
194+
- uses: actions/checkout@v7.0.0
195195
with:
196196
persist-credentials: false
197197
- name: Install Rust
@@ -218,7 +218,7 @@ jobs:
218218
path: clang-tools-manager
219219
- name: Establish provenance
220220
id: auth
221-
uses: rust-lang/crates-io-auth-action@bbd81622f20ce9e2dd9622e3218b975523e45bbe # v1.0.4
221+
uses: rust-lang/crates-io-auth-action@c6f97d42243bad5fab37ca0427f495c86d5b1a18 # v1.0.5
222222
- name: Publish package
223223
env:
224224
PKG_NAME: ${{ startsWith(github.ref_name, 'cpp-linter') && 'cpp-linter' || 'clang-tools-manager' }}

.github/workflows/build-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
cache-deps:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v6.0.3
36+
- uses: actions/checkout@v7.0.0
3737
with:
3838
persist-credentials: false
3939
- run: rustup update --no-self-update
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
needs: [cache-deps, seed-build-script]
5454
steps:
55-
- uses: actions/checkout@v6.0.3
55+
- uses: actions/checkout@v7.0.0
5656
with:
5757
persist-credentials: false
5858
- name: Cache .cargo locked resources
@@ -63,7 +63,7 @@ jobs:
6363
- name: Install uv
6464
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
6565
- name: Install cargo-binstall
66-
uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
66+
uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
6767
env:
6868
GITHUB_TOKEN: ${{ github.token }}
6969
- name: Install nur
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: ubuntu-latest
8888
needs: [cache-deps, seed-build-script]
8989
steps:
90-
- uses: actions/checkout@v6.0.3
90+
- uses: actions/checkout@v7.0.0
9191
with:
9292
persist-credentials: false
9393
- run: rustup update --no-self-update
@@ -99,7 +99,7 @@ jobs:
9999
- name: Install uv
100100
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
101101
- name: Install cargo-binstall
102-
uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
102+
uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
103103
env:
104104
GITHUB_TOKEN: ${{ github.token }}
105105
- name: Install nur

.github/workflows/bump-n-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@v6.0.3
48+
uses: actions/checkout@v7.0.0
4949
with:
5050
token: ${{ secrets.BUMP_N_RELEASE }}
5151
fetch-depth: 0
5252
fetch-tags: true
5353
persist-credentials: true # needed for `git push`
5454
- name: Set up Python
5555
if: inputs.package == 'cpp-linter-py'
56-
uses: actions/setup-python@v6
56+
uses: actions/setup-python@v6.2.0
5757
with:
5858
python-version: 3.x
5959
- name: Install Node.js
@@ -63,7 +63,7 @@ jobs:
6363
node-version: 24.x
6464
- run: yarn install
6565
if: inputs.package == 'cpp-linter-js'
66-
- uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
66+
- uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
6767
- run: cargo binstall -y git-cliff
6868
env:
6969
GITHUB_TOKEN: ${{ github.token }}
@@ -88,7 +88,7 @@ jobs:
8888
outputs:
8989
pkgs: ${{ steps.get-pkgs.outputs.pkgs }}
9090
steps:
91-
- uses: actions/checkout@v6.0.3
91+
- uses: actions/checkout@v7.0.0
9292
with:
9393
fetch-depth: 0
9494
persist-credentials: false
@@ -114,12 +114,12 @@ jobs:
114114
matrix:
115115
pkg: ${{ fromJSON(needs.get-changed-pkgs.outputs.pkgs) }}
116116
steps:
117-
- uses: actions/checkout@v6.0.3
117+
- uses: actions/checkout@v7.0.0
118118
with:
119119
fetch-depth: 0
120120
fetch-tags: true
121121
persist-credentials: false
122-
- uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
122+
- uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
123123
- run: cargo binstall -y git-cliff
124124
env:
125125
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/node-js-packaging.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
name: Build ${{ matrix.settings.target }}
8282
runs-on: ${{ matrix.settings.host }}
8383
steps:
84-
- uses: actions/checkout@v6.0.3
84+
- uses: actions/checkout@v7.0.0
8585
with:
8686
persist-credentials: false
8787
- name: Setup node
@@ -111,7 +111,7 @@ jobs:
111111
use-cache: true # zizmor: ignore[cache-poisoning]
112112
- name: Install cargo-binstall
113113
if: endsWith(matrix.settings.build, ' -x') || endsWith(matrix.settings.build, '--use-cross')
114-
uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
114+
uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
115115
env:
116116
GITHUB_TOKEN: ${{ github.token }}
117117
- name: Install ${{endsWith(matrix.settings.build, ' -x') && 'cargo-zigbuild' || 'cargo-cross'}}
@@ -147,7 +147,7 @@ jobs:
147147
runs-on: ubuntu-latest
148148
name: Build FreeBSD
149149
steps:
150-
- uses: actions/checkout@v6.0.3
150+
- uses: actions/checkout@v7.0.0
151151
with:
152152
persist-credentials: false
153153
- name: setup FreeBSD VM
@@ -221,7 +221,7 @@ jobs:
221221
- '24'
222222
runs-on: ${{ matrix.settings.host }}
223223
steps:
224-
- uses: actions/checkout@v6.0.3
224+
- uses: actions/checkout@v7.0.0
225225
with:
226226
persist-credentials: false
227227
- name: Setup node
@@ -263,7 +263,7 @@ jobs:
263263
node: '24' # no docker image node:24-slim for armv7
264264
runs-on: ${{ contains(matrix.target, 'aarch64') && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
265265
steps:
266-
- uses: actions/checkout@v6.0.3
266+
- uses: actions/checkout@v7.0.0
267267
with:
268268
persist-credentials: false
269269
- name: Setup node
@@ -335,7 +335,7 @@ jobs:
335335
- test-macOS-windows-binding
336336
- test-linux-binding
337337
steps:
338-
- uses: actions/checkout@v6.0.3
338+
- uses: actions/checkout@v7.0.0
339339
with:
340340
persist-credentials: false
341341
- name: Setup node

.github/workflows/pre-commit-hooks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
RUST_BACKTRACE: 1
2323

2424
steps:
25-
- uses: actions/checkout@v6.0.3
25+
- uses: actions/checkout@v7.0.0
2626
with:
2727
persist-credentials: false
2828
- run: rustup update
@@ -39,7 +39,7 @@ jobs:
3939
lint-js:
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v6.0.3
42+
- uses: actions/checkout@v7.0.0
4343
with:
4444
persist-credentials: false
4545
- uses: actions/setup-node@v6

.github/workflows/python-packaging.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ jobs:
7070
# - runner: ubuntu-latest
7171
# target: ppc64le
7272
steps:
73-
- uses: actions/checkout@v6.0.3
73+
- uses: actions/checkout@v7.0.0
7474
with:
7575
persist-credentials: false
76-
- uses: actions/setup-python@v6
76+
- uses: actions/setup-python@v6.2.0
7777
with:
7878
python-version: '3.x'
7979
- name: Restore build script seed
@@ -108,10 +108,10 @@ jobs:
108108
- runner: windows-latest
109109
target: x86
110110
steps:
111-
- uses: actions/checkout@v6.0.3
111+
- uses: actions/checkout@v7.0.0
112112
with:
113113
persist-credentials: false
114-
- uses: actions/setup-python@v6
114+
- uses: actions/setup-python@v6.2.0
115115
with:
116116
python-version: '3.x'
117117
architecture: ${{ matrix.platform.target }}
@@ -144,10 +144,10 @@ jobs:
144144
- runner: macos-15
145145
target: aarch64
146146
steps:
147-
- uses: actions/checkout@v6.0.3
147+
- uses: actions/checkout@v7.0.0
148148
with:
149149
persist-credentials: false
150-
- uses: actions/setup-python@v6
150+
- uses: actions/setup-python@v6.2.0
151151
with:
152152
python-version: '3.x'
153153
- name: Restore build script seed
@@ -170,10 +170,10 @@ jobs:
170170
sdist:
171171
runs-on: ubuntu-latest
172172
steps:
173-
- uses: actions/checkout@v6.0.3
173+
- uses: actions/checkout@v7.0.0
174174
with:
175175
persist-credentials: false
176-
- uses: actions/setup-python@v6
176+
- uses: actions/setup-python@v6.2.0
177177
with:
178178
python-version: 3.x
179179
- name: Build sdist
@@ -201,7 +201,7 @@ jobs:
201201
merge-multiple: true
202202
- name: Setup Python
203203
if: ${{ !startsWith(github.ref, 'refs/tags/cpp-linter-py/v') }}
204-
uses: actions/setup-python@v6
204+
uses: actions/setup-python@v6.2.0
205205
with:
206206
python-version: 3.x
207207
- name: Check distributions

.github/workflows/run-dev-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
runs-on: ${{ matrix.os }}
4444
steps:
45-
- uses: actions/checkout@v6.0.3
45+
- uses: actions/checkout@v7.0.0
4646
with:
4747
persist-credentials: false
4848

@@ -62,7 +62,7 @@ jobs:
6262
# if: runner.os == 'Windows'
6363
# run: vcpkg install openssl
6464

65-
- uses: cargo-bins/cargo-binstall@30b5ca8b54e1dcffd9548bc87ede1531310fdc67 # v1.20.0
65+
- uses: cargo-bins/cargo-binstall@732870f031d2fb36309d0deaf36abcc704a7be65 # v1.20.1
6666
env:
6767
GITHUB_TOKEN: ${{ github.token }}
6868
- name: Install third-party binaries
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
GITHUB_TOKEN: ${{ github.token }}
7373

74-
- uses: actions/setup-python@v6
74+
- uses: actions/setup-python@v6.2.0
7575
with:
7676
python-version: 3.x
7777

0 commit comments

Comments
 (0)