Skip to content

Commit 8ab393a

Browse files
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent dff5982 commit 8ab393a

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ jobs:
3434
components: rustfmt, clippy
3535

3636
- name: Cache cargo registry
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: ~/.cargo/registry
4040
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
4141

4242
- name: Cache cargo index
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
4444
with:
4545
path: ~/.cargo/git
4646
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
4747

4848
- name: Cache cargo build
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: target
5252
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -79,7 +79,7 @@ jobs:
7979
python-version: ${{ matrix.python-version }}
8080

8181
- name: Cache pip packages
82-
uses: actions/cache@v3
82+
uses: actions/cache@v4
8383
with:
8484
path: ~/.cache/pip
8585
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
@@ -297,7 +297,7 @@ jobs:
297297
override: true
298298

299299
- name: Cache cargo
300-
uses: actions/cache@v3
300+
uses: actions/cache@v4
301301
with:
302302
path: |
303303
~/.cargo/registry

.github/workflows/neural-nexus-ci-cd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ jobs:
3434
components: rustfmt, clippy
3535

3636
- name: Cache cargo registry
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: ~/.cargo/registry
4040
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
4141

4242
- name: Cache cargo index
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
4444
with:
4545
path: ~/.cargo/git
4646
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
4747

4848
- name: Cache cargo build
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: target
5252
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -79,7 +79,7 @@ jobs:
7979
python-version: ${{ matrix.python-version }}
8080

8181
- name: Cache pip packages
82-
uses: actions/cache@v3
82+
uses: actions/cache@v4
8383
with:
8484
path: ~/.cache/pip
8585
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
@@ -297,7 +297,7 @@ jobs:
297297
override: true
298298

299299
- name: Cache cargo
300-
uses: actions/cache@v3
300+
uses: actions/cache@v4
301301
with:
302302
path: |
303303
~/.cargo/registry

.github/workflows/neural-nexus-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
components: rustfmt, clippy
2323

2424
- name: Cache dependencies
25-
uses: actions/cache@v3
25+
uses: actions/cache@v4
2626
with:
2727
path: |
2828
~/.cargo/registry

0 commit comments

Comments
 (0)