Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ inputs:
type: string
description: 'The version of Go to install'
required: false
default: '1.21'
default: '1.24'
python-version:
type: string
description: 'The version of Python to install'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: '1.23'
go-version: '1.24'
- name: Run Fmt
run: |
cd cicd
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: '1.23'
go-version: '1.24'
# By nature, this also makes sure that everything builds
- name: Run Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion cicd/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/GoogleCloudPlatform/DataflowTemplates/cicd

go 1.23.0
go 1.24.0

require (
github.com/google/go-cmp v0.7.0
Expand Down
Loading