Skip to content

Commit d06dcc7

Browse files
committed
Updated github actions to support node 16.
1 parent e9110a1 commit d06dcc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy-staging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
node-version: [16.x]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v1
20+
uses: actions/setup-node@v3
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
- run: yarn install && yarn build
@@ -26,7 +26,7 @@ jobs:
2626
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' # This conditional will skip the step for Dependabot PRs
2727
run: yarn deploy:staging --token ${{ secrets.FIREBASE_TOKEN }}
2828
- name: Upload artifacts # Find artifacts under actions/jobs
29-
uses: actions/upload-artifact@v2
29+
uses: actions/upload-artifact@v3
3030
with:
3131
name: chrome-extension
3232
path: extension

0 commit comments

Comments
 (0)