Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 44b7e8a

Browse files
chore(deps): bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [taiki-e/cache-cargo-install-action](https://github.com/taiki-e/cache-cargo-install-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). 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 `taiki-e/cache-cargo-install-action` from 2 to 3 - [Release notes](https://github.com/taiki-e/cache-cargo-install-action/releases) - [Changelog](https://github.com/taiki-e/cache-cargo-install-action/blob/main/CHANGELOG.md) - [Commits](taiki-e/cache-cargo-install-action@v2...v3) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- 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: taiki-e/cache-cargo-install-action dependency-version: '3' 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 ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 719ae8a commit 44b7e8a

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: sudo apt-get install -y ripgrep
1717

1818
- name: Checkout repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Get MSRV
2222
id: get_msrv
@@ -35,7 +35,7 @@ jobs:
3535
- nightly
3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939

4040
- name: Install Rust
4141
uses: dtolnay/rust-toolchain@master
@@ -111,7 +111,7 @@ jobs:
111111
target: x86_64-pc-windows-msvc
112112
steps:
113113
- name: Checkout repository
114-
uses: actions/checkout@v4
114+
uses: actions/checkout@v6
115115

116116
- name: Install Rust
117117
uses: dtolnay/rust-toolchain@master
@@ -133,7 +133,7 @@ jobs:
133133
# This is fixed on `main` but not yet released. To avoid a breakage somewhen in the future
134134
# pin the cross revision used to the latest HEAD at 04/2024.
135135
# Go back to taiki-e/install-action once cross 0.3 is released.
136-
uses: taiki-e/cache-cargo-install-action@v2
136+
uses: taiki-e/cache-cargo-install-action@v3
137137
with:
138138
tool: cross
139139
git: https://github.com/cross-rs/cross.git
@@ -182,14 +182,14 @@ jobs:
182182

183183
- name: Upload snapshots of failed tests
184184
if: ${{ failure() && steps.run_tests.outcome == 'failure' }}
185-
uses: actions/upload-artifact@v4
185+
uses: actions/upload-artifact@v6
186186
with:
187187
name: ${{ matrix.os }}-${{ matrix.rust }}-failed_snapshots
188188
path: '**/*.snap.new'
189189

190190
- name: Upload binaries
191191
if: ${{ success() || steps.build.outcome == 'success' }}
192-
uses: actions/upload-artifact@v4
192+
uses: actions/upload-artifact@v6
193193
with:
194194
name: ${{ matrix.target }}-${{ matrix.rust }}
195195
path: |

.github/workflows/publish-crate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121

2222
- name: Install Rust
2323
uses: dtolnay/rust-toolchain@master

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898

9999
steps:
100100
- name: Checkout repository
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v6
102102

103103
- name: Install Rust
104104
uses: dtolnay/rust-toolchain@master
@@ -113,7 +113,7 @@ jobs:
113113
# This is fixed on `main` but not yet released. To avoid a breakage somewhen in the future
114114
# pin the cross revision used to the latest HEAD at 04/2024.
115115
# Go back to taiki-e/install-action once cross 0.3 is released.
116-
uses: taiki-e/cache-cargo-install-action@v2
116+
uses: taiki-e/cache-cargo-install-action@v3
117117
with:
118118
tool: cross
119119
git: https://github.com/cross-rs/cross.git

.github/workflows/require-changelog-for-PRs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# allow dependabot PRs to have no changelog
2929
if: ${{ needs.get-submitter.outputs.submitter != 'dependabot[bot]' }}
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232

3333
- name: Fetch PR base
3434
run: git fetch --no-tags --prune --depth=1 origin

0 commit comments

Comments
 (0)