Skip to content

Commit b9e7e3a

Browse files
dependabot[bot]claytonrcarter
authored andcommitted
build: bump the actions-deps group with 6 updates
Bumps the actions-deps group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) | `6` | `7` | | [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) | `2.8.0` | `2.8.2` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `7` | 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 `stefanzweifel/git-auto-commit-action` from 6 to 7 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](stefanzweifel/git-auto-commit-action@v6...v7) Updates `Swatinem/rust-cache` from 2.8.0 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@98c8021...779680d) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `actions/download-artifact` from 5 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: Swatinem/rust-cache dependency-version: 2.8.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e844a7b commit b9e7e3a

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.github/workflows/generate-wiki-toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
"generate-toc":
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
repository: ${{ github.repository }}.wiki
1414
token: ${{ secrets.WIKI_UPDATE_TOC_TOKEN }}
@@ -32,7 +32,7 @@ jobs:
3232
include: "*.md"
3333
regex: true
3434

35-
- uses: stefanzweifel/git-auto-commit-action@v6
35+
- uses: stefanzweifel/git-auto-commit-action@v7
3636
with:
3737
commit_message: Auto update Wiki tables of contents
3838
file_pattern: "*.md"

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Forbid nocommit string
2222
run: |
@@ -35,7 +35,7 @@ jobs:
3535
override: true
3636

3737
- name: Cache dependencies
38-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
38+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5
3939

4040
- name: Run `cargo fmt`
4141
uses: actions-rs/cargo@v1

.github/workflows/linux-git-devel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
path: git-master
3232
repository: git/git
3333
ref: master
3434

35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
with:
3737
path: git-next
3838
repository: git/git
@@ -57,7 +57,7 @@ jobs:
5757
toolchain: 1.86
5858
override: true
5959

60-
- uses: actions/checkout@v5
60+
- uses: actions/checkout@v6
6161
with:
6262
path: git-branchless
6363

.github/workflows/linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
git-version: ["v2.24.3", "v2.29.2", "v2.33.1", "v2.37.3"]
2222

2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
with:
2626
repository: git/git
2727
ref: ${{ matrix.git-version }}
2828

29-
- uses: actions/cache@v4
29+
- uses: actions/cache@v5
3030
id: cache-git-build
3131
with:
3232
key: ${{ runner.os }}-git-${{ matrix.git-version }}
@@ -46,7 +46,7 @@ jobs:
4646
run: tar -czf git.tar.gz git git-*
4747

4848
- name: "Upload artifact: git"
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v6
5050
with:
5151
name: git-${{ matrix.git-version }}
5252
path: git.tar.gz
@@ -61,9 +61,9 @@ jobs:
6161
git-version: ["v2.24.3", "v2.29.2", "v2.33.1", "v2.37.3"]
6262

6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565
- name: "Download artifact: git"
66-
uses: actions/download-artifact@v5
66+
uses: actions/download-artifact@v7
6767
with:
6868
name: git-${{ matrix.git-version }}
6969

@@ -78,7 +78,7 @@ jobs:
7878
override: true
7979

8080
- name: Cache dependencies
81-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
81+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5
8282

8383
- name: Compile (all features)
8484
run: cargo build --all-features --all-targets --workspace

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: macos-latest
2222

2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525

2626
- name: Set up Rust
2727
uses: actions-rs/toolchain@v1
@@ -31,7 +31,7 @@ jobs:
3131
override: true
3232

3333
- name: Cache dependencies
34-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
34+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5
3535

3636
- name: Compile
3737
run: cargo build --benches --tests

.github/workflows/nix-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: nix-build
1313
timeout-minutes: 40
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- uses: cachix/install-nix-action@v31

.github/workflows/nix-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: nix-build
2020
timeout-minutes: 40
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525
- uses: cachix/install-nix-action@v31

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141

4242
- name: Install packages (Ubuntu)
4343
if: startsWith(matrix.os, 'ubuntu-24.04')

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run-tests:
1515
runs-on: windows-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- name: Set up Rust
2020
uses: actions-rs/toolchain@v1
@@ -24,7 +24,7 @@ jobs:
2424
override: true
2525

2626
- name: Cache dependencies
27-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
27+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5
2828

2929
- name: Compile
3030
run: cargo build --all-targets --workspace

0 commit comments

Comments
 (0)