From 3477ee0db5e3f81bead31de8ff1ba0ea2297bf8e Mon Sep 17 00:00:00 2001 From: Quentin Legot Date: Sat, 29 Jun 2024 10:28:57 +0200 Subject: [PATCH] fix: remove packageManager version, update actions --- .github/workflows/publish.yml | 6 +++--- package.json | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f986d08..598b249 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,11 +14,11 @@ jobs: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Enable Corepack before setting up Node run: corepack enable - - name: Use Node.js 18.x - uses: actions/setup-node@v3 + - name: Use Node.js 20.x + uses: actions/setup-node@v4 with: node-version: 20 cache: 'yarn' diff --git a/package.json b/package.json index 10e572a..b5346b2 100644 --- a/package.json +++ b/package.json @@ -57,6 +57,5 @@ }, "config": { "forge": "./config.forge.cjs" - }, - "packageManager": "yarn@4.3.1" + } }