Update GitHub Actions action versions
This commit is contained in:
parent
79fa3c7b0f
commit
8ce059bb46
1 changed files with 5 additions and 5 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -5,12 +5,12 @@ jobs:
|
||||||
name: Build, Upload, Test
|
name: Build, Upload, Test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Install Node
|
- name: Install Node
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 18
|
||||||
#cache: npm
|
#cache: npm
|
||||||
|
@ -29,7 +29,7 @@ jobs:
|
||||||
- name: Cache Firefox
|
- name: Cache Firefox
|
||||||
if: false # temporarily disabled
|
if: false # temporarily disabled
|
||||||
id: firefox-cache
|
id: firefox-cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: firefox-x86_64
|
path: firefox-x86_64
|
||||||
key: firefox-60.9.0esr
|
key: firefox-60.9.0esr
|
||||||
|
@ -46,7 +46,7 @@ jobs:
|
||||||
|
|
||||||
- name: Cache Node modules
|
- name: Cache Node modules
|
||||||
id: node-cache
|
id: node-cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: node-modules-${{ hashFiles('package-lock.json') }}
|
key: node-modules-${{ hashFiles('package-lock.json') }}
|
||||||
|
@ -86,7 +86,7 @@ jobs:
|
||||||
|
|
||||||
- name: Cache utilities Node modules
|
- name: Cache utilities Node modules
|
||||||
id: utilities-node-cache
|
id: utilities-node-cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: chrome/content/zotero/xpcom/utilities/node_modules
|
path: chrome/content/zotero/xpcom/utilities/node_modules
|
||||||
key: utilities-node-modules-${{ hashFiles('chrome/content/zotero/xpcom/utilities/package-lock.json') }}
|
key: utilities-node-modules-${{ hashFiles('chrome/content/zotero/xpcom/utilities/package-lock.json') }}
|
||||||
|
|
Loading…
Reference in a new issue