From c01619fb0ff6eea957f322539e2a8d336c2900e6 Mon Sep 17 00:00:00 2001 From: Gustavo Date: Tue, 4 Jul 2023 10:11:42 -0300 Subject: [PATCH] ci: upgrade actions to latest versions and use Node.js v18 --- .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 666e43c..a0c47c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,13 +10,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 18.x - - uses: actions/cache@v1 + - uses: actions/cache@v3 with: path: node_modules key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}