Skip to content

Commit b6a787d

Browse files
authored
Merge pull request github#8902 from github/dependabot/github_actions/actions/cache-3
Bump actions/cache from 2 to 3
2 parents f876ef9 + 2c1ee56 commit b6a787d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
CODEQL: ${{ steps.find-codeql.outputs.codeql-path }}
3030
- name: Cache queries
3131
id: cache-queries
32-
uses: actions/cache@v2
32+
uses: actions/cache@v3
3333
with:
3434
path: ${{ runner.temp }}/query-pack.zip
3535
key: queries-${{ hashFiles('ql/**/*.ql*') }}-${{ hashFiles('ql/**/qlpack.yml') }}-${{ hashFiles('ql/ql/src/ql.dbscheme*') }}-${{ steps.get-codeql-version.outputs.version }}
@@ -59,7 +59,7 @@ jobs:
5959
- uses: actions/checkout@v2
6060
- name: Cache entire extractor
6161
id: cache-extractor
62-
uses: actions/cache@v2
62+
uses: actions/cache@v3
6363
with:
6464
path: |
6565
ql/target/release/ql-autobuilder
@@ -69,7 +69,7 @@ jobs:
6969
key: ${{ runner.os }}-extractor-${{ hashFiles('ql/**/Cargo.lock') }}-${{ hashFiles('ql/**/*.rs') }}
7070
- name: Cache cargo
7171
if: steps.cache-extractor.outputs.cache-hit != 'true'
72-
uses: actions/cache@v2
72+
uses: actions/cache@v3
7373
with:
7474
path: |
7575
~/.cargo/registry

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: github/codeql-action/init@aa93aea877e5fb8841bcb1193f672abf6e9f2980
3030
with:
3131
languages: javascript # does not matter
32-
- uses: actions/cache@v2
32+
- uses: actions/cache@v3
3333
with:
3434
path: |
3535
~/.cargo/registry

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: github/codeql-action/init@aa93aea877e5fb8841bcb1193f672abf6e9f2980
2424
with:
2525
languages: javascript # does not matter
26-
- uses: actions/cache@v2
26+
- uses: actions/cache@v3
2727
with:
2828
path: |
2929
~/.cargo/registry

.github/workflows/ruby-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
brew install gnu-tar
4646
echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH
47-
- uses: actions/cache@v2
47+
- uses: actions/cache@v3
4848
with:
4949
path: |
5050
~/.cargo/registry

0 commit comments

Comments
 (0)