Skip to content

Commit

Permalink
ci(github): update dependencies
Browse files Browse the repository at this point in the history
- use ubuntu-22.04 to run job
- use actions/checkout@v3
- use actions/setup-node@v3 with nodejs v18
  • Loading branch information
SimonGolms committed Oct 31, 2022
1 parent df40458 commit f2a5a71
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Expand Up @@ -8,16 +8,16 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
HUSKY: 0 # Disable husky and git-hooks
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'npm'
- name: Install Dependencies
run: npm ci
Expand Down

0 comments on commit f2a5a71

Please sign in to comment.