Skip to content

Commit 1598faf

Browse files
build(deps): bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [cargo-bins/cargo-binstall](https://github.com/cargo-bins/cargo-binstall) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `cargo-bins/cargo-binstall` from 1.15.11 to 1.16.2 - [Release notes](https://github.com/cargo-bins/cargo-binstall/releases) - [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/install-from-binstall-release.ps1) - [Commits](cargo-bins/cargo-binstall@ae04fb5...3fc8167) Updates `astral-sh/setup-uv` from 7.1.3 to 7.1.4 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@5a7eac6...1e862df) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: cargo-bins/cargo-binstall dependency-version: 1.16.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 7.1.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1b9b9f5 commit 1598faf

File tree

8 files changed

+34
-34
lines changed

8 files changed

+34
-34
lines changed

.github/workflows/benchmark.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
BIN: target/release/cpp-linter
4040
steps:
4141
- name: Checkout ${{ matrix.name }}
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
ref: ${{ matrix.commit }}
4545
persist-credentials: false
@@ -71,7 +71,7 @@ jobs:
7171
build-py-binding:
7272
runs-on: ubuntu-latest
7373
steps:
74-
- uses: actions/checkout@v5
74+
- uses: actions/checkout@v6
7575
with:
7676
persist-credentials: false
7777
- name: Set up Python
@@ -101,11 +101,11 @@ jobs:
101101
needs: [build-bin, build-py-binding]
102102
runs-on: ubuntu-latest
103103
steps:
104-
- uses: actions/checkout@v5
104+
- uses: actions/checkout@v6
105105
with:
106106
persist-credentials: false
107107
- name: Checkout libgit2
108-
uses: actions/checkout@v5
108+
uses: actions/checkout@v6
109109
with:
110110
repository: libgit2/libgit2
111111
ref: v1.8.1
@@ -116,7 +116,7 @@ jobs:
116116
uses: actions/download-artifact@v6
117117

118118
- name: Install cargo-binstall
119-
uses: cargo-bins/cargo-binstall@ae04fb5e853ae6cd3ad7de4a1d554a8b646d12aa # v1.15.11
119+
uses: cargo-bins/cargo-binstall@3fc81674af4165a753833a94cae9f91d8849049f # v1.16.2
120120
env:
121121
GITHUB_TOKEN: ${{ github.token }}
122122
- name: Install hyperfine
@@ -126,7 +126,7 @@ jobs:
126126
- name: Install nushell
127127
uses: hustcer/setup-nu@3a97c8160c2bb5af321a03336e7addc28f94444e # v3.21
128128
- name: Install uv
129-
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # v7.1.3
129+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
130130

131131
- name: Run benchmark script
132132
working-directory: benchmark

.github/workflows/binary-builds.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
contents: write
101101
steps:
102102
- name: Checkout
103-
uses: actions/checkout@v5
103+
uses: actions/checkout@v6
104104
with:
105105
persist-credentials: false
106106

@@ -114,7 +114,7 @@ jobs:
114114
115115
- name: Install cargo-binstall
116116
if: matrix.cross
117-
uses: cargo-bins/cargo-binstall@ae04fb5e853ae6cd3ad7de4a1d554a8b646d12aa # v1.15.11
117+
uses: cargo-bins/cargo-binstall@3fc81674af4165a753833a94cae9f91d8849049f # v1.16.2
118118
env:
119119
GITHUB_TOKEN: ${{ github.token }}
120120
- name: Install cross (cargo cross compiler)
@@ -167,7 +167,7 @@ jobs:
167167
id-token: write
168168
contents: write
169169
steps:
170-
- uses: actions/checkout@v5
170+
- uses: actions/checkout@v6
171171
with:
172172
persist-credentials: false
173173
- name: Install Rust

.github/workflows/build-docs.yml

Lines changed: 7 additions & 7 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@v5
36+
- uses: actions/checkout@v6
3737
with:
3838
persist-credentials: false
3939
- run: rustup update --no-self-update
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
needs: [cache-deps]
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v6
5252
with:
5353
persist-credentials: false
5454
- name: Cache .cargo locked resources
@@ -57,9 +57,9 @@ jobs:
5757
path: ~/.cargo
5858
key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }}
5959
- name: Install uv
60-
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # v7.1.3
60+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
6161
- name: Install cargo-binstall
62-
uses: cargo-bins/cargo-binstall@ae04fb5e853ae6cd3ad7de4a1d554a8b646d12aa # v1.15.11
62+
uses: cargo-bins/cargo-binstall@3fc81674af4165a753833a94cae9f91d8849049f # v1.16.2
6363
env:
6464
GITHUB_TOKEN: ${{ github.token }}
6565
- name: Install nur
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
needs: [cache-deps]
8080
steps:
81-
- uses: actions/checkout@v5
81+
- uses: actions/checkout@v6
8282
with:
8383
persist-credentials: false
8484
- run: rustup update --no-self-update
@@ -88,9 +88,9 @@ jobs:
8888
path: ~/.cargo
8989
key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }}
9090
- name: Install uv
91-
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # v7.1.3
91+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
9292
- name: Install cargo-binstall
93-
uses: cargo-bins/cargo-binstall@ae04fb5e853ae6cd3ad7de4a1d554a8b646d12aa # v1.15.11
93+
uses: cargo-bins/cargo-binstall@3fc81674af4165a753833a94cae9f91d8849049f # v1.16.2
9494
env:
9595
GITHUB_TOKEN: ${{ github.token }}
9696
- name: Install nur

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
with:
3535
token: ${{ secrets.BUMP_N_RELEASE }}
3636
fetch-depth: 0
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
node-version: 24.x
4747
- run: yarn install
48-
- uses: cargo-bins/cargo-binstall@ae04fb5e853ae6cd3ad7de4a1d554a8b646d12aa # v1.15.11
48+
- uses: cargo-bins/cargo-binstall@3fc81674af4165a753833a94cae9f91d8849049f # v1.16.2
4949
- run: cargo binstall -y git-cliff
5050
env:
5151
GITHUB_TOKEN: ${{ github.token }}
@@ -63,7 +63,7 @@ jobs:
6363
pull-requests: read
6464
runs-on: ubuntu-latest
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
with:
6868
fetch-depth: 0
6969
fetch-tags: true

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
name: Build ${{ matrix.settings.target }}
7777
runs-on: ${{ matrix.settings.host }}
7878
steps:
79-
- uses: actions/checkout@v5
79+
- uses: actions/checkout@v6
8080
with:
8181
persist-credentials: false
8282
- name: Setup node
@@ -106,7 +106,7 @@ jobs:
106106
use-cache: true # zizmor: ignore[cache-poisoning]
107107
- name: Install cargo-binstall
108108
if: contains(matrix.settings.build, ' -x ') || contains(matrix.settings.build, '--use-cross ')
109-
uses: cargo-bins/cargo-binstall@ae04fb5e853ae6cd3ad7de4a1d554a8b646d12aa # v1.15.11
109+
uses: cargo-bins/cargo-binstall@3fc81674af4165a753833a94cae9f91d8849049f # v1.16.2
110110
env:
111111
GITHUB_TOKEN: ${{ github.token }}
112112
- name: Install ${{contains(matrix.settings.build, ' -x ') && 'cargo-zigbuild' || 'cargo-cross'}}
@@ -136,7 +136,7 @@ jobs:
136136
runs-on: ubuntu-latest
137137
name: Build FreeBSD
138138
steps:
139-
- uses: actions/checkout@v5
139+
- uses: actions/checkout@v6
140140
with:
141141
persist-credentials: false
142142
- name: Build
@@ -205,7 +205,7 @@ jobs:
205205
- '22'
206206
runs-on: ${{ matrix.settings.host }}
207207
steps:
208-
- uses: actions/checkout@v5
208+
- uses: actions/checkout@v6
209209
with:
210210
persist-credentials: false
211211
- name: Setup node
@@ -244,7 +244,7 @@ jobs:
244244
- '22'
245245
runs-on: ${{ contains(matrix.target, 'aarch64') && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
246246
steps:
247-
- uses: actions/checkout@v5
247+
- uses: actions/checkout@v6
248248
with:
249249
persist-credentials: false
250250
- name: Setup node
@@ -315,7 +315,7 @@ jobs:
315315
- test-macOS-windows-binding
316316
- test-linux-binding
317317
steps:
318-
- uses: actions/checkout@v5
318+
- uses: actions/checkout@v6
319319
with:
320320
persist-credentials: false
321321
- 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@v5
25+
- uses: actions/checkout@v6
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@v5
42+
- uses: actions/checkout@v6
4343
with:
4444
persist-credentials: false
4545
- uses: actions/setup-node@v6

.github/workflows/python-packaging.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- runner: ubuntu-latest
6262
target: ppc64le
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565
with:
6666
persist-credentials: false
6767
- uses: actions/setup-python@v6
@@ -114,7 +114,7 @@ jobs:
114114
- runner: windows-latest
115115
target: x86
116116
steps:
117-
- uses: actions/checkout@v5
117+
- uses: actions/checkout@v6
118118
with:
119119
persist-credentials: false
120120
- uses: actions/setup-python@v6
@@ -144,7 +144,7 @@ jobs:
144144
- runner: macos-14
145145
target: aarch64
146146
steps:
147-
- uses: actions/checkout@v5
147+
- uses: actions/checkout@v6
148148
with:
149149
persist-credentials: false
150150
- uses: actions/setup-python@v6
@@ -165,7 +165,7 @@ jobs:
165165
sdist:
166166
runs-on: ubuntu-latest
167167
steps:
168-
- uses: actions/checkout@v5
168+
- uses: actions/checkout@v6
169169
with:
170170
persist-credentials: false
171171
- uses: actions/setup-python@v6

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

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

3636
runs-on: ${{ matrix.os }}
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
with:
4040
persist-credentials: false
4141

@@ -55,7 +55,7 @@ jobs:
5555
# if: runner.os == 'Windows'
5656
# run: vcpkg install openssl
5757

58-
- uses: cargo-bins/cargo-binstall@ae04fb5e853ae6cd3ad7de4a1d554a8b646d12aa # v1.15.11
58+
- uses: cargo-bins/cargo-binstall@3fc81674af4165a753833a94cae9f91d8849049f # v1.16.2
5959
env:
6060
GITHUB_TOKEN: ${{ github.token }}
6161
- name: Install third-party binaries
@@ -69,7 +69,7 @@ jobs:
6969
python-version: 3.x
7070

7171
- name: Install uv
72-
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # v7.1.3
72+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
7373
with:
7474
enable-cache: true
7575
cache-dependency-glob: "uv.lock"

0 commit comments

Comments
 (0)