Skip to content

Commit deb83f0

Browse files
authored
Merge pull request #289 from fluxcd/go-1.23
Build with Go 1.23
2 parents f087250 + 0302574 commit deb83f0

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Go
1616
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1717
with:
18-
go-version-file: 'go.mod'
18+
go-version: 1.23.x
1919
cache: true
2020
- name: Run vet
2121
run: make tidy fmt vet

.github/workflows/e2e-gitea.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2121
with:
22-
go-version-file: 'go.mod'
22+
go-version: 1.23.x
2323
cache: true
2424
- name: Start Provider instances
2525
run: make start-provider-instances-gitea GITEA_VERSION=1.21.1@sha256:63165c64759c98e55f0afdb5fc3be64cbb27180d3474e951fa027228e6955029

.github/workflows/e2e-github.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Go
1818
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1919
with:
20-
go-version-file: 'go.mod'
20+
go-version: 1.23.x
2121
cache: true
2222
- name: Run tests
2323
run: |

.github/workflows/e2e-gitlab.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2121
with:
22-
go-version-file: 'go.mod'
22+
go-version: 1.23.x
2323
cache: true
2424
- name: Start Provider instances
2525
run: make start-provider-instances-gitlab

.github/workflows/e2e-stash.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Go
1818
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1919
with:
20-
go-version-file: 'go.mod'
20+
go-version: 1.23.x
2121
cache: true
2222
- name: Run tests
2323
run: |

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Go
1717
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
1818
with:
19-
go-version-file: 'go.mod'
19+
go-version: 1.23.x
2020
cache: true
2121
- name: Download release notes utility
2222
env:

.github/workflows/scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Go
2424
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2525
with:
26-
go-version-file: 'go.mod'
26+
go-version: 1.23.x
2727
cache: true
2828
- name: Initialize CodeQL
2929
uses: github/codeql-action/init@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
## Requirements
99

10-
- Go >= 1.18
10+
- Go >= 1.23
1111
- Make
1212

1313
## How to run the test suite locally

0 commit comments

Comments
 (0)