From ae0422e63fb7b70f0adcc7c0e40882c7dcf0f84d Mon Sep 17 00:00:00 2001 From: Michael Heap Date: Tue, 6 Jun 2023 13:45:52 +0100 Subject: [PATCH] Update GH Action versions --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fec5d04..d517e43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: Node.js CI -on: [push, pull_request_target] +on: [push] jobs: build: @@ -13,9 +13,9 @@ jobs: env: CI: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: npm ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9812043..54ce87e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,10 +4,10 @@ on: types: [published, edited] jobs: compile: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install deps and build run: npm ci --only=production && npm run build - name: Automatically build action