Skip to content

Commit

Permalink
chore(ci): upgrade GH actions to latest versions (#4899)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddzz committed Jul 19, 2022
1 parent 023f548 commit 84b2f84
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/browser-test.yml
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'run-browser-test')
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: 'Cache node_modules'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '~/.npm'
key: "ubuntu-latest-node-full-v16-${{ hashFiles('**/package-lock.json') }}"
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/mocha.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Check event pull_request
if: github.event_name == 'pull_request'
run: 'echo pull_request: run workflow'
- uses: actions/checkout@v2
- uses: actions/checkout@v3
if: github.event_name == 'push'
- name: Check event push
id: findPr
Expand All @@ -46,8 +46,8 @@ jobs:
- 16
- 18
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '${{ matrix.node }}'
- run: npm install --production
Expand All @@ -58,12 +58,12 @@ jobs:
runs-on: ubuntu-latest
needs: smoke
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: 'Cache node_modules'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '~/.npm'
key: "ubuntu-latest-node-v16-${{ hashFiles('**/package-lock.json') }}"
Expand Down Expand Up @@ -95,17 +95,17 @@ jobs:
env:
COVERAGE: 1
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '${{ matrix.node }}'
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Get npm cache directory in Windows
id: npm-cache
if: ${{ matrix.os == 'windows-2019' }}
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: 'Cache node_modules'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ matrix.os == 'ubuntu-latest' && '~/.npm' || steps.npm-cache.outputs.dir }}
key: "${{ matrix.os }}-node-v${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}"
Expand Down Expand Up @@ -139,12 +139,12 @@ jobs:
# Don't run forked 'pull_request' without saucelabs token
if: github.event_name == 'push' || !github.event.pull_request.head.repo.fork
steps:
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: 'Cache node_modules'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '~/.npm'
# this key is different than above, since we are running scripts
Expand Down

0 comments on commit 84b2f84

Please sign in to comment.