Skip to content

Commit 2e7325f

Browse files
committed
chore: Upgrade to golang 1.21.6
Keeping up with the latest. Signed-off-by: justinsb <[email protected]>
1 parent 2fabe98 commit 2e7325f

File tree

17 files changed

+19
-19
lines changed

17 files changed

+19
-19
lines changed

.github/workflows/checkLicenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Go 1.21
2525
uses: actions/setup-go@v3
2626
with:
27-
go-version: '>=1.21.5'
27+
go-version: '>=1.21.6'
2828
- run: |
2929
./scripts/create-licenses.sh
3030
# Upload the licenses list so it's available if needed

.github/workflows/e2eEnvironment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Go
3535
uses: actions/setup-go@v3
3636
with:
37-
go-version: '>=1.21.5'
37+
go-version: '>=1.21.6'
3838
- uses: actions/checkout@v3
3939
# Pinned to Commit to ensure action is consistent: https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
4040
# If you upgrade this version confirm the changes match your expectations

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Set up Go
4949
uses: actions/setup-go@v3
5050
with:
51-
go-version: '>=1.21.5'
51+
go-version: '>=1.21.6'
5252
id: go
5353
- name: Check out code into the Go module directory
5454
uses: actions/checkout@v3
@@ -70,7 +70,7 @@ jobs:
7070
- name: Set up Go
7171
uses: actions/setup-go@v3
7272
with:
73-
go-version: '>=1.21.5'
73+
go-version: '>=1.21.6'
7474
id: go
7575
- name: Check out code into the Go module directory
7676
uses: actions/checkout@v3
@@ -88,7 +88,7 @@ jobs:
8888
# - name: Set up Go
8989
# uses: actions/setup-go@v1
9090
# with:
91-
# go-version: '>=1.21.5'
91+
# go-version: '>=1.21.6'
9292
# id: go
9393
# - name: Check out code into the Go module directory
9494
# uses: actions/checkout@v3

.github/workflows/live-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@v3
3535
with:
36-
go-version: '>=1.21.5'
36+
go-version: '>=1.21.6'
3737
- uses: actions/checkout@master
3838
# Pinned to Commit to ensure action is consistent: https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
3939
# If you upgrade this version confirm the changes match your expectations

.github/workflows/porch-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Set up Go
5959
uses: actions/setup-go@v3
6060
with:
61-
go-version: '>=1.21.5'
61+
go-version: '>=1.21.6'
6262
- name: Checkout Porch
6363
uses: actions/checkout@v3
6464
- name: Build kpt

.github/workflows/porch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Go
3333
uses: actions/setup-go@v3
3434
with:
35-
go-version: '>=1.21.5'
35+
go-version: '>=1.21.6'
3636
- name: Run Porch Unit Tests
3737
uses: actions/checkout@v3
3838
- name: Verify format / headers etc

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Go
2929
uses: actions/setup-go@v3
3030
with:
31-
go-version: '>=1.21.5'
31+
go-version: '>=1.21.6'
3232
- name: Checkout
3333
uses: actions/checkout@v3
3434
with:

.github/workflows/verifyContent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/setup-go@v3
3232
with:
33-
go-version: '>=1.21.5'
33+
go-version: '>=1.21.6'
3434
- uses: actions/checkout@v3
3535
- run: |
3636
make build

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
GOLANG_VERSION := 1.21.5
15+
GOLANG_VERSION := 1.21.6
1616
GORELEASER_CONFIG = release/tag/goreleaser.yaml
1717
GORELEASER_IMAGE := ghcr.io/goreleaser/goreleaser-cross:v$(GOLANG_VERSION)
1818

porch/build/Dockerfile.apiserver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.21.5-bookworm as builder
15+
FROM golang:1.21.6-bookworm as builder
1616

1717
WORKDIR /workspace/src
1818
RUN git clone https://github.com/kubernetes/kubernetes --branch v1.23.2 --depth=1

0 commit comments

Comments
 (0)