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

wilfreds pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-k8shim.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c0612c9 [YUNIKORN-3235] Updating the go version to 1.26.1 (#1005)
5c0612c9 is described below

commit 5c0612c9484e4ecc4dddddf336743624366dd0a2
Author: Aditya Maheshwari <[email protected]>
AuthorDate: Fri Mar 13 11:21:26 2026 +1100

    [YUNIKORN-3235] Updating the go version to 1.26.1 (#1005)
    
    removed patch version from .go_Version, updated action version, configured
    setup action to always use the latest patch version
    
    Closes: #1005
    
    Signed-off-by: Wilfred Spiegelenburg <[email protected]>
---
 .github/workflows/pre-commit.yml  | 12 +++++++-----
 .github/workflows/push-master.yml |  7 ++++---
 .github/workflows/weekly-e2e.yml  |  7 ++++---
 .go_version                       |  2 +-
 4 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
index 7c7dfd5f..a9b22478 100644
--- a/.github/workflows/pre-commit.yml
+++ b/.github/workflows/pre-commit.yml
@@ -19,9 +19,10 @@ jobs:
         with:
           fetch-depth: 2
       - name: Set up Go
-        uses: actions/setup-go@v5
+        uses: actions/setup-go@v6
         with:
           go-version-file: .go_version
+          check-latest: true
       - name: Check license
         run: make license-check
       - name: Go lint
@@ -33,7 +34,7 @@ jobs:
       - name: Unit tests
         run: make test
       - name: Code coverage
-        uses: codecov/codecov-action@v4
+        uses: codecov/codecov-action@v5
         with:
           files: build/coverage.txt
           # After codecov/codecov-action@v4, tokenless uploading of coverage 
files to non-public repo is unsupported.
@@ -61,9 +62,10 @@ jobs:
         with:
           fetch-depth: 2
       - name: Set up Go
-        uses: actions/setup-go@v5
+        uses: actions/setup-go@v6
         with:
           go-version-file: .go_version
+          check-latest: true
       - name: Set hugepage
         run: |
           echo "vm.nr_hugepages = 1024" | sudo tee -a /etc/sysctl.conf
@@ -71,7 +73,7 @@ jobs:
           sudo sysctl -a | grep vm.nr_hugepages
       - name: Cache and Restore e2e required tools
         id: cache
-        uses: actions/cache@v4
+        uses: actions/cache@v5
         with:
           path: |
             tools
@@ -82,7 +84,7 @@ jobs:
         env:
           KIND_NODE_IMAGE: ${{ matrix.k8s }}
       - name: Upload artifacts
-        uses: actions/upload-artifact@v4
+        uses: actions/upload-artifact@v6
         if: ${{ failure() }}
         with:
           name: ${{ github.job }} stdout (${{ matrix.k8s }})
diff --git a/.github/workflows/push-master.yml 
b/.github/workflows/push-master.yml
index 03bd406b..b59b47f3 100644
--- a/.github/workflows/push-master.yml
+++ b/.github/workflows/push-master.yml
@@ -10,17 +10,18 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Checkout source code
-        uses: actions/checkout@v4
+        uses: actions/checkout@v6
         with:
           fetch-depth: 2
       - name: Set up Go
-        uses: actions/setup-go@v5
+        uses: actions/setup-go@v6
         with:
           go-version-file: .go_version
+          check-latest: true
       - name: Unit tests
         run: make test
       - name: Code coverage
-        uses: codecov/codecov-action@v4
+        uses: codecov/codecov-action@v5
         with:
           files: build/coverage.txt
           # After codecov/codecov-action@v4, tokenless uploading of coverage 
files to non-public repo is unsupported.
diff --git a/.github/workflows/weekly-e2e.yml b/.github/workflows/weekly-e2e.yml
index b7bde2e8..f3d20934 100644
--- a/.github/workflows/weekly-e2e.yml
+++ b/.github/workflows/weekly-e2e.yml
@@ -31,9 +31,10 @@ jobs:
         with:
           fetch-depth: 2
       - name: Set up Go
-        uses: actions/setup-go@v5
+        uses: actions/setup-go@v6
         with:
           go-version-file: .go_version
+          check-latest: true
       - name: Set hugepage
         run: |
           echo "vm.nr_hugepages = 1024" | sudo tee -a /etc/sysctl.conf
@@ -41,7 +42,7 @@ jobs:
           sudo sysctl -a | grep vm.nr_hugepages
       - name: Cache and Restore e2e required tools
         id: cache
-        uses: actions/cache@v4
+        uses: actions/cache@v5
         with:
           path: |
             tools
@@ -53,7 +54,7 @@ jobs:
           KIND_NODE_IMAGE: ${{ matrix.k8s }}
           KIND_EXTRA_ARGS: ${{ matrix.plugin }}
       - name: Upload artifacts
-        uses: actions/upload-artifact@v4
+        uses: actions/upload-artifact@v6
         if: ${{ failure() }}
         with:
           name: ${{ github.job }} stdout (${{ matrix.k8s }}${{ matrix.plugin 
== '--plugin' && format(', {0}', matrix.plugin) || matrix.plugin }})
diff --git a/.go_version b/.go_version
index 5ff8c4f5..24cffb85 100644
--- a/.go_version
+++ b/.go_version
@@ -1 +1 @@
-1.26.0
+1.26


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

Reply via email to