From b68bb82583716074000fb905142d3267d2199668 Mon Sep 17 00:00:00 2001 From: Arnaud Pouliquen Date: Sat, 3 Jun 2023 12:15:59 +0200 Subject: [PATCH] update checkoout action to V3 Node.js 12 actions are deprecated. Use the checkout V3 action to use Node.js 16 Signed-off-by: Arnaud Pouliquen --- .github/workflows/pullrequest.yml | 2 +- .github/workflows/push.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 40fefae..897643b 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -14,7 +14,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Fetch git repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 path: website diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1a672d3..1afc4cb 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -15,7 +15,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Fetch git repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: website