This is an automated email from the ASF dual-hosted git repository.

erose pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 59fc3c22b HDDS-14833. Bump GitHub actions versions (#367)
59fc3c22b is described below

commit 59fc3c22bdf02a42cf2a05750b46dffd01c85b9b
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Wed Mar 25 17:15:45 2026 +0100

    HDDS-14833. Bump GitHub actions versions (#367)
---
 .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 edf6dc23d..ca1bea29f 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 5b29ec36f..57109542a 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 9f6897260..0a309ca36 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 8bf7fcf94..a7f36412c 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 a23cdee0e..a3b09eb3e 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/[email protected]
+      uses: apache/[email protected]
   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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to