From ce13763b524df125cf65f53f1a968752e8eef7f1 Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Tue, 4 Jun 2024 17:08:48 +0200 Subject: [PATCH] ci: upgrade to actions/checkout@4 and actions/setup-node@4 Reference: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c31008bc8..c17b30ea0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }}