From f2a5a71999cd373c0b623ac6078ea040f5f09a3b Mon Sep 17 00:00:00 2001 From: Simon G Date: Mon, 31 Oct 2022 18:44:43 +0100 Subject: [PATCH] ci(github): update dependencies - use ubuntu-22.04 to run job - use actions/checkout@v3 - use actions/setup-node@v3 with nodejs v18 --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f66a9a7..ee55e80 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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