This is an automated email from the ASF dual-hosted git repository.
dongjoon-hyun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 3efc5bd [SPARK-56785] Use the latest `actions/*` GitHub Actions
3efc5bd is described below
commit 3efc5bdb466d5a41a5a78a60654deddbff2dd378
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu May 7 12:32:10 2026 -0700
[SPARK-56785] Use the latest `actions/*` GitHub Actions
### What changes were proposed in this pull request?
This PR aims to bump `actions/*` GitHub Actions to the latest major
versions.
| Action | Before | After |
|---|---|---|
| `actions/setup-go` | `v5` | `v6` |
| `actions/configure-pages` | `v5` | `v6` |
| `actions/upload-pages-artifact` | `v3` | `v5` |
| `actions/deploy-pages` | `v4` | `v5` |
`actions/checkoutv6` and `actions/setup-javav5` are already on the latest
majors.
### Why are the changes needed?
To keep CI on the latest official actions for security fixes and Node.js
runtime updates.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude Opus 4.7
Closes #666 from dongjoon-hyun/SPARK-56785.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 4 +++-
.github/workflows/pages.yml | 6 +++---
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index d8708b4..6487798 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -158,7 +158,9 @@ jobs:
cpus: 3
memory: 10240m
- name: Set Up Go
- uses: actions/setup-go@v5
+ uses: actions/setup-go@v6
+ with:
+ go-version: 'stable'
- name: Set Up Chainsaw
run: |
go install github.com/kyverno/chainsaw@latest
diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml
index cccb221..0f6ddb5 100644
--- a/.github/workflows/pages.yml
+++ b/.github/workflows/pages.yml
@@ -43,11 +43,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Pages
- uses: actions/configure-pages@v5
+ uses: actions/configure-pages@v6
- name: Upload artifact
- uses: actions/upload-pages-artifact@v3
+ uses: actions/upload-pages-artifact@v5
with:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
- uses: actions/deploy-pages@v4
+ uses: actions/deploy-pages@v5
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]