From bd2a7386b6b79a7d74aa0da69c6c942807eb98c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Harold=20Th=C3=A9tiot?= Date: Wed, 14 Aug 2024 19:45:47 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0bdd1c4e..f36d17c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,20 +18,20 @@ jobs: # This workflow contains a single job called "build" test: # The type of runner that the job will run on - runs-on: macOS-11 + runs-on: macOS-12 # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - name: Setup NodeJS 16 - uses: actions/setup-node@v1 + - name: Setup NodeJS + uses: actions/setup-node@v3 with: - node-version: "16" + node-version: "20" - name: Cache Node.js modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: # npm cache files are stored in `~/.npm` on Linux/macOS path: ~/.npm