Skip to content

Commit e0d9509

Browse files
dependabot[bot]VorpalBlade
authored andcommitted
build(deps): Bump the actions group with 5 updates
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.0` | `6.0.1` | | [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) | `2.8.1` | `2.8.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5.0.0` | `6.0.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.31.2` | `4.31.9` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `3.0.0` | `3.1.0` | Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@1af3b93...8e8c483) Updates `Swatinem/rust-cache` from 2.8.1 to 2.8.2 - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@f13886b...779680d) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@330a01c...b7c566a) Updates `github/codeql-action` from 4.31.2 to 4.31.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@0499de3...5d4e8d1) Updates `actions/attest-build-provenance` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@977bb37...00014ed) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: Swatinem/rust-cache dependency-version: 2.8.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.31.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/attest-build-provenance dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent cbb9835 commit e0d9509

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
rust: nightly
6464
debug_info: off
6565
steps:
66-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
66+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6767
with:
6868
persist-credentials: false
6969
- name: Environment info
@@ -77,7 +77,7 @@ jobs:
7777
with:
7878
tool: cross@latest
7979
- name: Cache builds
80-
uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2.8.1
80+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
8181
with:
8282
key: ${{ matrix.target }}-${{ matrix.rust }}
8383
- name: Cross compile
@@ -95,7 +95,7 @@ jobs:
9595
fi
9696
tar cf chezmoi_modify_manager.tar chezmoi_modify_manager
9797
zstd -T0 -6 chezmoi_modify_manager.tar
98-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
98+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
9999
if: matrix.rust == 'stable' && matrix.target != 'x86_64-pc-windows-gnu'
100100
with:
101101
name: chezmoi_modify_manager_${{ matrix.target }}.zst
@@ -120,7 +120,7 @@ jobs:
120120
- 1.86.0
121121
- stable
122122
steps:
123-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
123+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
124124
with:
125125
persist-credentials: false
126126
- name: Install Rust
@@ -129,7 +129,7 @@ jobs:
129129
if: matrix.features == '--no-default-features --features=keyring'
130130
run: sudo apt-get install -y libdbus-1-dev pkg-config
131131
- name: Cache builds
132-
uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2.8.1
132+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
133133
with:
134134
save-if: ${{ matrix.features == '--no-default-features --features=updater-tls-native-vendored' }}
135135
- name: Compile
@@ -193,7 +193,7 @@ jobs:
193193
debug-suffix: .dSYM
194194
rust: nightly
195195
steps:
196-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
196+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
197197
with:
198198
persist-credentials: false
199199
- name: Environment info
@@ -203,7 +203,7 @@ jobs:
203203
- name: Install Rust
204204
run: rustup install --no-self-update --profile minimal ${{ matrix.rust }} && rustup default ${{ matrix.rust }} && rustup target add ${{ matrix.target }}
205205
- name: Cache builds
206-
uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2.8.1
206+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
207207
with:
208208
key: ${{ matrix.os }}-${{ matrix.target }}-${{ matrix.rust }}
209209
- name: Compile
@@ -218,7 +218,7 @@ jobs:
218218
cp -r target/${{ matrix.target }}/debug/chezmoi_modify_manager${{ matrix.debug-suffix }} chezmoi_modify_manager/
219219
tar cf chezmoi_modify_manager.tar chezmoi_modify_manager
220220
zstd -T0 -6 chezmoi_modify_manager.tar
221-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
221+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
222222
if: matrix.rust == 'stable' && matrix.target != 'x86_64-pc-windows-gnu'
223223
with:
224224
name: chezmoi_modify_manager_${{ matrix.target }}.zst

.github/workflows/lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
26+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2727
with:
2828
persist-credentials: false
2929

@@ -38,14 +38,14 @@ jobs:
3838
run: cargo binstall --no-confirm --no-symlinks clippy-sarif sarif-fmt
3939

4040
- name: Cache builds
41-
uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1 # v2.8.1
41+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
4242

4343
- name: Run rust-clippy
4444
run: cargo clippy --all-features --all-targets --message-format=json -- -D warnings | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
4545
continue-on-error: true
4646

4747
- name: Upload analysis results to GitHub
48-
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
48+
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5
4949
with:
5050
sarif_file: rust-clippy-results.sarif
5151
wait-for-processing: true
@@ -59,7 +59,7 @@ jobs:
5959
permissions:
6060
contents: read
6161
steps:
62-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
62+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6363
with:
6464
persist-credentials: false
6565
- name: Install Rust
@@ -71,7 +71,7 @@ jobs:
7171
permissions:
7272
contents: read
7373
steps:
74-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
74+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7575
with:
7676
persist-credentials: false
7777

@@ -92,7 +92,7 @@ jobs:
9292
permissions:
9393
contents: read
9494
steps:
95-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
95+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
9696
with:
9797
persist-credentials: false
9898

.github/workflows/mdbook-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pages: write # To push to a GitHub Pages site
1919
id-token: write # To update the deployment status
2020
steps:
21-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
21+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2222
with:
2323
persist-credentials: false
2424
fetch-depth: 0

.github/workflows/mdbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
permissions:
1818
contents: read
1919
steps:
20-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
20+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2121
with:
2222
persist-credentials: false
2323
- name: Install Rust

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
contents: write
2828
id-token: write
2929
steps:
30-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
30+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3131
with:
3232
persist-credentials: false
3333
- uses: taiki-e/create-gh-release-action@26b80501670402f1999aff4b934e1574ef2d3705 # v1.9.1
@@ -43,7 +43,7 @@ jobs:
4343
contents: write
4444
id-token: write
4545
steps:
46-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
46+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4747
with:
4848
persist-credentials: false
4949
- name: Setup Rust
@@ -104,7 +104,7 @@ jobs:
104104
rustflags:
105105
runs-on: ${{ matrix.os }}
106106
steps:
107-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
107+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
108108
with:
109109
persist-credentials: false
110110
- uses: taiki-e/upload-rust-binary-action@3962470d6e7f1993108411bc3f75a135ec67fc8c # v1.27.0
@@ -122,7 +122,7 @@ jobs:
122122
env:
123123
RUSTFLAGS: ${{ matrix.rustflags }}
124124
- name: Generate artifact attestation
125-
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
125+
uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0
126126
with:
127127
subject-path: "${{ steps.upload-rust-binary-action.outputs.archive }}.*"
128128

@@ -131,7 +131,7 @@ jobs:
131131
permissions:
132132
contents: read
133133
steps:
134-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
134+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
135135
with:
136136
persist-credentials: false
137137
- run: cargo publish --token ${CRATES_TOKEN}
@@ -145,7 +145,7 @@ jobs:
145145
permissions:
146146
contents: read
147147
steps:
148-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
148+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
149149
with:
150150
persist-credentials: false
151151
- name: Get AUR repo

0 commit comments

Comments
 (0)