From 77f4e7d0f530a8f40c29970c3468b5718e7a73e9 Mon Sep 17 00:00:00 2001 From: nb-wildfire <155455781+nb-wildfire@users.noreply.github.com> Date: Thu, 11 Jun 2026 18:56:50 +0000 Subject: [PATCH] [DSO-1275] Bump GitHub Actions to supported major versions Update action versions across all workflows: - actions/checkout: v4 -> v6 - actions/setup-node: v4 -> v6 - actions/cache: v4 -> v5 --- .github/workflows/actions-publish.yml | 6 +++--- .github/workflows/actions-test.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions-publish.yml b/.github/workflows/actions-publish.yml index bdfd502..86c4465 100644 --- a/.github/workflows/actions-publish.yml +++ b/.github/workflows/actions-publish.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: '14.19.3' registry-url: 'https://registry.npmjs.org' @@ -27,7 +27,7 @@ jobs: - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/actions-test.yml b/.github/workflows/actions-test.yml index 93bc020..52a8450 100644 --- a/.github/workflows/actions-test.yml +++ b/.github/workflows/actions-test.yml @@ -7,10 +7,10 @@ jobs: image: node:14.19.3 steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}