From a3fe4285ebe53e0f4657e05b89e0eb1810113b04 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Fri, 31 May 2024 10:26:55 +0200 Subject: [PATCH] workflows: Update action versions This gets rid of the warning about Node.js actions being deprecated. --- .github/workflows/index_site.yml | 2 +- .github/workflows/publish_site.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/index_site.yml b/.github/workflows/index_site.yml index 0f80cffed50..ef97b484735 100644 --- a/.github/workflows/index_site.yml +++ b/.github/workflows/index_site.yml @@ -69,7 +69,7 @@ jobs: runs-on: [ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Get the content of docsearch-config.json as config id: docsearch_config diff --git a/.github/workflows/publish_site.yml b/.github/workflows/publish_site.yml index 903d26bb221..dc6db0a3571 100644 --- a/.github/workflows/publish_site.yml +++ b/.github/workflows/publish_site.yml @@ -15,10 +15,10 @@ jobs: NODE_OPTIONS: '--max-old-space-size=8192' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node.js for use with actions - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: 18