From 856b2279071603da987c7ec0f7a2c45023687c5d Mon Sep 17 00:00:00 2001 From: Stephan Meijer Date: Thu, 19 Feb 2026 19:34:15 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F(ci)=20upgrade=20GitHub=20Act?= =?UTF-8?q?ions=20workflow=20steps=20to=20latest=20versions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update all GitHub Actions to their latest major versions for improved performance, security patches, and Node.js runtime compatibility. Signed-off-by: Stephan Meijer --- .../front-dependencies-installation.yml | 8 ++++---- .github/workflows/main.yml | 20 +++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/front-dependencies-installation.yml b/.github/workflows/front-dependencies-installation.yml index 04e774e4..cdd7ad31 100644 --- a/.github/workflows/front-dependencies-installation.yml +++ b/.github/workflows/front-dependencies-installation.yml @@ -13,16 +13,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Restore the frontend cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: front-node_modules with: path: "node_modules" key: front-node_modules-${{ hashFiles('yarn.lock') }} - name: Setup Node.js if: steps.front-node_modules.outputs.cache-hit != 'true' - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ inputs.node_version }} - name: Install dependencies @@ -30,7 +30,7 @@ jobs: run: yarn install --frozen-lockfile - name: Cache install frontend if: steps.front-node_modules.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "node_modules" key: front-node_modules-${{ hashFiles('yarn.lock') }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce6167dc..76f079b9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: if: github.event_name == 'pull_request' # Makes sense only for pull requests steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: show @@ -40,13 +40,13 @@ jobs: needs: install-front steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "20.x" - name: Restore the frontend cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "node_modules" key: front-node_modules-${{ hashFiles('yarn.lock') }} @@ -59,13 +59,13 @@ jobs: needs: install-front steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "20.x" - name: Restore the frontend cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "node_modules" key: front-node_modules-${{ hashFiles('yarn.lock') }} @@ -78,13 +78,13 @@ jobs: needs: install-front steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "20.x" - name: Restore the frontend cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "node_modules" key: front-node_modules-${{ hashFiles('yarn.lock') }}