Skip to content

Commit

Permalink
Update Actions versions
Browse files Browse the repository at this point in the history
* Host system: Ubuntu 18 -> 22
* Node 12 -> 16
* Checkout v2 -> v3
  • Loading branch information
Discookie committed Nov 3, 2022
1 parent 745f6e3 commit 0501ac8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: ./.github/workflows/test.yml
build:
name: Create extension
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
needs: [test]

# Each registry should have the following fields:
Expand All @@ -32,12 +32,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on: [push, pull_request, workflow_call]
jobs:
test:
name: Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install CodeChecker
Expand All @@ -18,6 +18,6 @@ jobs:
sudo snap alias codechecker CodeChecker
CodeChecker version
- name: Run tests
uses: GabrielBB/xvfb-action@v1.0
uses: GabrielBB/xvfb-action@v1.6
with:
run: yarn run test

0 comments on commit 0501ac8

Please sign in to comment.