From 8195841df7c166434f1a34bf1fbc3b5b30204433 Mon Sep 17 00:00:00 2001 From: "Doroszlai, Attila" Date: Fri, 13 Mar 2026 09:27:58 +0100 Subject: [PATCH] HDDS-14833. Bump GitHub actions versions --- .github/workflows/docusaurus.yml | 18 +++++++++--------- .github/workflows/label-pr.yml | 2 +- .github/workflows/publish.yml | 4 ++-- .github/workflows/pull-request.yml | 2 +- .github/workflows/static.yml | 18 +++++++++--------- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/docusaurus.yml b/.github/workflows/docusaurus.yml index edf6dc23df..ca1bea29f6 100644 --- a/.github/workflows/docusaurus.yml +++ b/.github/workflows/docusaurus.yml @@ -35,10 +35,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check Docker image cache id: cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.image_tar }} key: image2-${{ hashFiles('Dockerfile', 'compose.yml', 'pnpm-lock.yaml') }} @@ -53,7 +53,7 @@ jobs: docker save ozone-site --output="${{ env.image_tar }}" - name: Save docker image tar to cache if: steps.cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ env.image_tar }} key: image2-${{ hashFiles('Dockerfile', 'compose.yml', 'pnpm-lock.yaml') }} @@ -63,9 +63,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Restore docker image tar from cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ env.image_tar }} key: image2-${{ hashFiles('Dockerfile', 'compose.yml', 'pnpm-lock.yaml') }} @@ -76,7 +76,7 @@ jobs: run: | docker compose run site pnpm build - name: Save website build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: build path: build @@ -89,14 +89,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Get Docker files - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Download website build artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: build path: build - name: Restore docker image tar from cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ env.image_tar }} key: image2-${{ hashFiles('Dockerfile', 'compose.yml', 'pnpm-lock.yaml') }} diff --git a/.github/workflows/label-pr.yml b/.github/workflows/label-pr.yml index 5b29ec36f6..57109542ac 100644 --- a/.github/workflows/label-pr.yml +++ b/.github/workflows/label-pr.yml @@ -26,4 +26,4 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/labeler@v5 + - uses: actions/labeler@v6 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9f6897260a..0a309ca36a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,12 +31,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Download website build artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: build path: build - name: Checkout publish branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: path: publish # Update this to asf-site when the website is ready to be published. diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 8bf7fcf94d..a7f36412cd 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check pull request title env: TITLE: ${{ github.event.pull_request.title }} diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index a23cdee0e8..a3b09eb3e5 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -37,14 +37,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Check Apache license headers - uses: apache/skywalking-eyes@v0.6.0 + uses: apache/skywalking-eyes@v0.8.0 file-names: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run file name check working-directory: ${{ env.script_dir }} run: | @@ -53,13 +53,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Enable corepack run: | npm i -g --force corepack # see https://github.com/actions/setup-node/issues/1222 corepack enable - name: Use Node.js ${{ env.node_version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ env.node_version }} cache: pnpm @@ -77,13 +77,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Enable corepack run: | npm i -g --force corepack # see https://github.com/actions/setup-node/issues/1222 corepack enable - name: Use Node.js ${{ env.node_version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ env.node_version }} cache: pnpm @@ -95,13 +95,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Enable corepack run: | npm i -g --force corepack # see https://github.com/actions/setup-node/issues/1222 corepack enable - name: Use Node.js ${{ env.node_version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ env.node_version }} cache: pnpm