Skip to content

Commit 61a3748

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

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ql-for-ql-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
### Build the extractor ###
3434
- name: Cache entire extractor
3535
id: cache-extractor
36-
uses: actions/cache@v3
36+
uses: actions/cache@v5
3737
with:
3838
path: |
3939
ql/extractor-pack/
4040
ql/target/release/buramu
4141
key: ${{ runner.os }}-${{ steps.os_version.outputs.version }}-extractor-${{ hashFiles('ql/**/Cargo.lock') }}-${{ hashFiles('shared/tree-sitter-extractor') }}-${{ hashFiles('ql/**/*.rs') }}
4242
- name: Cache cargo
4343
if: steps.cache-extractor.outputs.cache-hit != 'true'
44-
uses: actions/cache@v3
44+
uses: actions/cache@v5
4545
with:
4646
path: |
4747
~/.cargo/registry

.github/workflows/ql-for-ql-dataset_measure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
languages: javascript # does not matter
3535
- uses: ./.github/actions/os-version
3636
id: os_version
37-
- uses: actions/cache@v3
37+
- uses: actions/cache@v5
3838
with:
3939
path: |
4040
~/.cargo/registry

.github/workflows/ql-for-ql-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
tools: nightly
3434
- uses: ./.github/actions/os-version
3535
id: os_version
36-
- uses: actions/cache@v3
36+
- uses: actions/cache@v5
3737
with:
3838
path: |
3939
~/.cargo/registry
@@ -79,7 +79,7 @@ jobs:
7979
tools: nightly
8080
- uses: ./.github/actions/os-version
8181
id: os_version
82-
- uses: actions/cache@v3
82+
- uses: actions/cache@v5
8383
with:
8484
path: |
8585
~/.cargo/registry

.github/workflows/ruby-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ jobs:
6161
- uses: ./.github/actions/os-version
6262
id: os_version
6363
- name: Cache entire extractor
64-
uses: actions/cache@v3
64+
uses: actions/cache@v5
6565
id: cache-extractor
6666
with:
6767
path: |
6868
target/release/codeql-extractor-ruby
6969
target/release/codeql-extractor-ruby.exe
7070
ruby/extractor/ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
7171
key: ${{ runner.os }}-${{ steps.os_version.outputs.version }}-ruby-extractor-${{ hashFiles('ruby/extractor/rust-toolchain.toml', 'ruby/extractor/Cargo.lock') }}-${{ hashFiles('shared/tree-sitter-extractor') }}-${{ hashFiles('ruby/extractor/**/*.rs') }}
72-
- uses: actions/cache@v3
72+
- uses: actions/cache@v5
7373
if: steps.cache-extractor.outputs.cache-hit != 'true'
7474
with:
7575
path: |

0 commit comments

Comments
 (0)