Skip to content

Commit 5a72545

Browse files
build(deps): bump the actions group with 6 updates
Bumps the actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/cache](https://github.com/actions/cache) | `5` | `5.0.4` | | [hustcer/setup-nu](https://github.com/hustcer/setup-nu) | `3.22` | `3.23` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `4` | `5` | | [cross-platform-actions/action](https://github.com/cross-platform-actions/action) | `0.32.0` | `1.0.0` | | [PyO3/maturin-action](https://github.com/pyo3/maturin-action) | `1.50.1` | `1.51.0` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.13.0` | `1.14.0` | Updates `actions/cache` from 5 to 5.0.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v5.0.4) Updates `hustcer/setup-nu` from 3.22 to 3.23 - [Release notes](https://github.com/hustcer/setup-nu/releases) - [Changelog](https://github.com/hustcer/setup-nu/blob/main/CHANGELOG.md) - [Commits](hustcer/setup-nu@v3.22...92c296b) Updates `actions/upload-pages-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v4...v5) Updates `cross-platform-actions/action` from 0.32.0 to 1.0.0 - [Release notes](https://github.com/cross-platform-actions/action/releases) - [Changelog](https://github.com/cross-platform-actions/action/blob/master/changelog.md) - [Commits](cross-platform-actions/action@492b0c8...2331563) Updates `PyO3/maturin-action` from 1.50.1 to 1.51.0 - [Release notes](https://github.com/pyo3/maturin-action/releases) - [Commits](PyO3/maturin-action@04ac600...e83996d) Updates `pypa/gh-action-pypi-publish` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@ed0c539...cef2210) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: hustcer/setup-nu dependency-version: '3.23' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: cross-platform-actions/action dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: PyO3/maturin-action dependency-version: 1.51.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a2c2ab7 commit 5a72545

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
ref: ${{ matrix.commit }}
4545
persist-credentials: false
4646
- name: Cache base ref build
47-
uses: actions/cache@v5
47+
uses: actions/cache@v5.0.4
4848
id: cache
4949
with:
5050
key: bin-cache-${{ hashFiles('cpp-linter/src/**', 'Cargo.toml', 'Cargo.lock', 'cpp-linter/Cargo.toml') }}

.github/workflows/build-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
persist-credentials: false
3939
- run: rustup update --no-self-update
4040
- name: Cache .cargo locked resources
41-
uses: actions/cache@v5
41+
uses: actions/cache@v5.0.4
4242
with:
4343
path: ~/.cargo
4444
key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }}
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
persist-credentials: false
5454
- name: Cache .cargo locked resources
55-
uses: actions/cache/restore@v5
55+
uses: actions/cache/restore@v5.0.4
5656
with:
5757
path: ~/.cargo
5858
key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }}
@@ -69,7 +69,7 @@ jobs:
6969
- name: Build docs
7070
run: nur docs --build
7171
- name: Upload docs build as artifact
72-
uses: actions/upload-pages-artifact@v4
72+
uses: actions/upload-pages-artifact@v5
7373
with:
7474
name: cpp-linter-docs
7575
path: docs/site
@@ -83,7 +83,7 @@ jobs:
8383
persist-credentials: false
8484
- run: rustup update --no-self-update
8585
- name: Cache .cargo locked resources
86-
uses: actions/cache/restore@v5
86+
uses: actions/cache/restore@v5.0.4
8787
with:
8888
path: ~/.cargo
8989
key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
rustup update stable --no-self-update
9090
rustup target add ${{ matrix.settings.target }}
9191
- name: Cache cargo
92-
uses: actions/cache@v5 # zizmor: ignore[cache-poisoning]
92+
uses: actions/cache@v5.0.4 # zizmor: ignore[cache-poisoning]
9393
with:
9494
path: |
9595
~/.cargo/registry/index/
@@ -141,7 +141,7 @@ jobs:
141141
persist-credentials: false
142142
- name: Build
143143
id: build
144-
uses: cross-platform-actions/action@492b0c80085400348c599edace11141a4ee73524 # v0.32.0
144+
uses: cross-platform-actions/action@233156312992f3f169d8d0c633c21d12a5d30455 # v1.0.0
145145
env:
146146
DEBUG: napi:*
147147
RUSTUP_IO_THREADS: 1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
persist-credentials: false
2828
- run: rustup update
2929
- name: Cache .cargo locked resources
30-
uses: actions/cache@v5
30+
uses: actions/cache@v5.0.4
3131
with:
3232
path: ~/.cargo
3333
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}

.github/workflows/python-packaging.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
fi
8484
8585
- name: Build wheels
86-
uses: PyO3/maturin-action@04ac600d27cdf7a9a280dadf7147097c42b757ad # v1.50.1
86+
uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0
8787
with:
8888
target: ${{ matrix.platform.target }}
8989
args: --release --out dist --find-interpreter ${{ steps.is-openssl-vendored.outputs.enabled }}
@@ -126,7 +126,7 @@ jobs:
126126
python-version: '3.x'
127127
architecture: ${{ matrix.platform.target }}
128128
- name: Build wheels
129-
uses: PyO3/maturin-action@04ac600d27cdf7a9a280dadf7147097c42b757ad # v1.50.1
129+
uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0
130130
with:
131131
target: ${{ matrix.platform.target }}
132132
args: --release --out dist --find-interpreter
@@ -155,7 +155,7 @@ jobs:
155155
with:
156156
python-version: '3.x'
157157
- name: Build wheels
158-
uses: PyO3/maturin-action@04ac600d27cdf7a9a280dadf7147097c42b757ad # v1.50.1
158+
uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0
159159
with:
160160
target: ${{ matrix.platform.target }}
161161
args: --release --out dist --find-interpreter --features openssl-vendored
@@ -176,7 +176,7 @@ jobs:
176176
with:
177177
python-version: 3.x
178178
- name: Build sdist
179-
uses: PyO3/maturin-action@04ac600d27cdf7a9a280dadf7147097c42b757ad # v1.50.1
179+
uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0
180180
with:
181181
command: sdist
182182
args: --out dist
@@ -208,7 +208,7 @@ jobs:
208208
run: pipx run twine check dist/*
209209
- name: Publish to PyPI
210210
if: startsWith(github.ref, 'refs/tags/cpp-linter-py/v')
211-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
211+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
212212
with:
213213
skip-existing: true
214214
# This workflow is registered as a trusted publisher (for test-pypi and pypi).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
run: choco install ninja
8484

8585
- name: Cache .cargo locked resources
86-
uses: actions/cache@v5
86+
uses: actions/cache@v5.0.4
8787
with:
8888
path: ~/.cargo
8989
key: ${{ runner.os }}-tests-cargo-${{ hashFiles('Cargo.lock') }}
@@ -94,7 +94,7 @@ jobs:
9494
run: sudo apt-get update
9595

9696
- name: Install nushell
97-
uses: hustcer/setup-nu@920172d92eb04671776f3ba69d605d3b09351c30 # v3.22
97+
uses: hustcer/setup-nu@92c296ba1ba2ba04cc948ab64ddefe192dc13f0c # v3.23
9898

9999
- name: Run test suite
100100
env:

0 commit comments

Comments
 (0)