This is an automated email from the ASF dual-hosted git repository.
anmolnar pushed a commit to branch branch-3.8
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.8 by this push:
new e1cbeb5d9 ZOOKEEPER-5060: Update GitHub Action versions
e1cbeb5d9 is described below
commit e1cbeb5d96e0c927f443a2d850559fdf0c64a7b4
Author: Dávid Paksy <[email protected]>
AuthorDate: Tue Jul 7 18:22:14 2026 +0200
ZOOKEEPER-5060: Update GitHub Action versions
Reviewers: anmolnar
Author: PDavid
Closes #2419 from PDavid/ZOOKEEPER-5060-gh-actions-update-branch-3.8
---
.github/workflows/ci.yaml | 10 +++++-----
.github/workflows/e2e.yaml | 6 +++---
.github/workflows/manual.yaml | 8 ++++----
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 75b1836ed..f1e244dd3 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -48,9 +48,9 @@ jobs:
timeout-minutes: 360
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up JDK ${{ matrix.profile.jdk }}
- uses: actions/setup-java@v5
+ uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 #
v5.3.0
with:
java-version: ${{ matrix.profile.jdk }}
distribution: temurin
@@ -67,21 +67,21 @@ jobs:
MAVEN_OPTS: -Djansi.force=true
- name: Upload unit test results
if: ${{ failure() }}
- uses: actions/upload-artifact@v7
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: surefire-reports-${{ matrix.profile.name }}
path: ./**/target/surefire-reports/
if-no-files-found: ignore
- name: Upload integration test results
if: ${{ failure() }}
- uses: actions/upload-artifact@v7
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: failsafe-reports-${{ matrix.profile.name }}
path: ./**/target/failsafe-reports/
if-no-files-found: ignore
- name: Upload cppunit test logs
if: ${{ failure() }}
- uses: actions/upload-artifact@v7
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: cppunit-logs-${{ matrix.profile.name }}
path: ./zookeeper-client/zookeeper-client-c/target/c/TEST-*.txt
diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml
index d20eba55b..799529a46 100644
--- a/.github/workflows/e2e.yaml
+++ b/.github/workflows/e2e.yaml
@@ -31,9 +31,9 @@ jobs:
timeout-minutes: 360
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #
v7.0.0
- name: Set up JDK ${{ matrix.jdk }}
- uses: actions/setup-java@v5
+ uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 #
v5.3.0
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
@@ -51,7 +51,7 @@ jobs:
- name: Cache ZooKeeper ${{ matrix.zk }}
id: dist-cache
if: matrix.zk != 'nightly'
- uses: actions/cache@v4
+ uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
with:
key: apache-zookeeper-${{ matrix.zk }}-bin.tar.gz
path: apache-zookeeper-${{ matrix.zk }}-bin.tar.gz
diff --git a/.github/workflows/manual.yaml b/.github/workflows/manual.yaml
index 8b50b8be3..c21e7f4d2 100644
--- a/.github/workflows/manual.yaml
+++ b/.github/workflows/manual.yaml
@@ -43,11 +43,11 @@ jobs:
timeout-minutes: 360
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event.inputs.buildRef }}
- name: Set up JDK 11
- uses: actions/setup-java@v5
+ uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 #
v5.3.0
with:
java-version: 11
distribution: temurin
@@ -64,14 +64,14 @@ jobs:
MAVEN_OPTS: -Djansi.force=true
- name: Upload unit test results
if: ${{ failure() }}
- uses: actions/upload-artifact@v7
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: surefire-reports
path: ./**/target/surefire-reports/
if-no-files-found: ignore
- name: Upload integration test results
if: ${{ failure() }}
- uses: actions/upload-artifact@v7
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a #
v7.0.1
with:
name: failsafe-reports
path: ./**/target/failsafe-reports/