From dd4be8475c31b034dc6ea3dfb75c446398da3f81 Mon Sep 17 00:00:00 2001 From: Jamie Barton Date: Mon, 22 Jul 2024 15:14:46 +0100 Subject: [PATCH] chore: update release config --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d2526b9..95601d50 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,14 +7,14 @@ on: jobs: release: name: Release - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: 16 + node-version: "lts/*" - name: Install dependencies run: npm ci - name: Build package