Skip to content

Commit

Permalink
Update GitHub Actions workflows
Browse files Browse the repository at this point in the history
This should resolve warnings about use of deprecated Node 16 in workflows.
  • Loading branch information
robertknight committed Jan 26, 2024
1 parent 8156e2b commit 641c1a0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- name: Cache the node_modules dir
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
make build SETTINGS_FILE=settings/firefox-staging.json dist/ci-firefox-staging.xpi
make build SETTINGS_FILE=settings/firefox-prod.json dist/ci-firefox-prod.xpi
- name: Archive packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: packages
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- name: Cache the node_modules dir
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --immutable
- name: Fetch packages
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: packages
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
ref: ${{ steps.update-client.outputs.ref }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache the node_modules dir
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
Expand Down

0 comments on commit 641c1a0

Please sign in to comment.