Skip to content

Commit

Permalink
Add support for go 1.24 and phased out support for go 1.22 (#1302)
Browse files Browse the repository at this point in the history
Signed-off-by: Cosmin Cojocar <ccojocar@google.com>
  • Loading branch information
ccojocar authored Feb 13, 2025
1 parent 9552f03 commit 7723829
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
strategy:
matrix:
version: [{go: '1.22.12', golangci: 'latest'}, {go: '1.23.6', golangci: 'latest'}]
version: [{go: '1.23.6', golangci: 'latest'}, {go: '1.24.0', golangci: 'latest'}]
runs-on: ubuntu-latest
env:
GO111MODULE: on
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: '1.23.6'
go-version: '1.24.0'
- name: Checkout Source
uses: actions/checkout@v4
- uses: actions/cache@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.6'
go-version: '1.24.0'
- name: Install Cosign
uses: sigstore/cosign-installer@v3
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
tags: ${{steps.meta.outputs.tags}}
labels: ${{steps.meta.outputs.labels}}
push: true
build-args: GO_VERSION=1.23
build-args: GO_VERSION=1.24
- name: Sign Docker Image
run: cosign sign --yes --key /tmp/cosign.key ${DIGEST} --registry-username="$secrets.DOCKER_USERNAME" --registry-password="::add-mask::$secrets.DOCKER_PASSWORD"
env:
Expand Down

0 comments on commit 7723829

Please sign in to comment.