Browse Source

Bump actions/cache from v2 to v2.1.4 (#1121)

pull/1124/head
dependabot[bot] 3 years ago committed by GitHub
parent
commit
22e87ca04b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/master.yml
  2. 2
      .github/workflows/pull_request.yml
  3. 12
      .github/workflows/rust.yml
  4. 2
      .github/workflows/test262.yml
  5. 2
      .github/workflows/webassembly.yml

2
.github/workflows/master.yml

@ -16,7 +16,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
target

2
.github/workflows/pull_request.yml

@ -12,7 +12,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
target

12
.github/workflows/rust.yml

@ -20,7 +20,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
target
@ -43,7 +43,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo build
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: target
key: ${{ runner.os }}-cargo-check-${{ hashFiles('**/Cargo.lock') }}
@ -78,7 +78,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
target
@ -107,7 +107,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: target
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
@ -159,7 +159,7 @@ jobs:
profile: minimal
components: clippy
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
target
@ -182,7 +182,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
target

2
.github/workflows/test262.yml

@ -26,7 +26,7 @@ jobs:
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
./boa/target

2
.github/workflows/webassembly.yml

@ -33,7 +33,7 @@ jobs:
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Cache yarn build
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: |
node_modules

Loading…
Cancel
Save