mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-07-23 00:34:55 +00:00
Bump actions/cache from 2 to 3.0.1 (#8108)
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
22
.github/workflows/main.yml
vendored
22
.github/workflows/main.yml
vendored
@ -21,7 +21,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
id: cache-dependencies
|
id: cache-dependencies
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
@ -31,7 +31,7 @@ jobs:
|
|||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
- name: Cache setup
|
- name: Cache setup
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-setup
|
key: ${{ runner.os }}-${{ github.sha }}-setup
|
||||||
@ -44,7 +44,7 @@ jobs:
|
|||||||
os: [ubuntu-latest, windows-2019]
|
os: [ubuntu-latest, windows-2019]
|
||||||
steps:
|
steps:
|
||||||
- name: Restore setup
|
- name: Restore setup
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-setup
|
key: ${{ runner.os }}-${{ github.sha }}-setup
|
||||||
@ -60,7 +60,7 @@ jobs:
|
|||||||
NODE_ENV: ${{ startsWith(github.ref, 'refs/tags/v') && 'release' || '' }}
|
NODE_ENV: ${{ startsWith(github.ref, 'refs/tags/v') && 'release' || '' }}
|
||||||
|
|
||||||
- name: Cache build
|
- name: Cache build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-build
|
key: ${{ runner.os }}-${{ github.sha }}-build
|
||||||
@ -70,7 +70,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Restore setup
|
- name: Restore setup
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-setup
|
key: ${{ runner.os }}-${{ github.sha }}-setup
|
||||||
@ -86,7 +86,7 @@ jobs:
|
|||||||
NODE_ENV: release
|
NODE_ENV: release
|
||||||
|
|
||||||
- name: Cache release build
|
- name: Cache release build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-build-release
|
key: ${{ runner.os }}-${{ github.sha }}-build-release
|
||||||
@ -96,7 +96,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Restore setup
|
- name: Restore setup
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-setup
|
key: ${{ runner.os }}-${{ github.sha }}-setup
|
||||||
@ -115,7 +115,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Restore release build
|
- name: Restore release build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-build-release
|
key: ${{ runner.os }}-${{ github.sha }}-build-release
|
||||||
@ -147,7 +147,7 @@ jobs:
|
|||||||
os: windows-2019
|
os: windows-2019
|
||||||
steps:
|
steps:
|
||||||
- name: Restore build
|
- name: Restore build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-build
|
key: ${{ runner.os }}-${{ github.sha }}-build
|
||||||
@ -166,7 +166,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Restore build
|
- name: Restore build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-build
|
key: ${{ runner.os }}-${{ github.sha }}-build
|
||||||
@ -192,7 +192,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Restore build
|
- name: Restore build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3.0.1
|
||||||
with:
|
with:
|
||||||
path: ./*
|
path: ./*
|
||||||
key: ${{ runner.os }}-${{ github.sha }}-build
|
key: ${{ runner.os }}-${{ github.sha }}-build
|
||||||
|
Reference in New Issue
Block a user