ci: bump go version to 1.19.x across the whole board
We were quite inconsistent about this previously, some files used 1.19.1 some 1.19.x, this makes it more consistent.
Jorropo committed
Jun 8, 2023 at 07:07 UTC
23f01232c962a1a02810c40e2d8baf50f211af11
7 files changed
+7
-7
.github/workflows/build.yml
+1
-1
@@ -10,7 +10,7 @@ on:
10
- 'master'
11
12
env:
13
- GO_VERSION: 1.19.1
13
+ GO_VERSION: 1.19.x
14
15
concurrency:
16
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name == 'push' && github.sha || github.ref }}
.github/workflows/docker-build.yml
+1
-1
@@ -27,6 +27,6 @@ jobs:
27
steps:
28
- uses: actions/setup-go@v3
29
with:
30
- go-version: 1.19.1
30
+ go-version: 1.19.x
31
- uses: actions/checkout@v3
32
- run: docker build -t $IMAGE_NAME:$WIP_IMAGE_TAG .
.github/workflows/gobuild.yml
+1
-1
@@ -30,7 +30,7 @@ jobs:
30
steps:
31
- uses: actions/setup-go@v3
32
with:
33
- go-version: 1.19.1
33
+ go-version: 1.19.x
34
- uses: actions/checkout@v3
35
- uses: protocol/cache-go-action@v1
36
with:
.github/workflows/golint.yml
+1
-1
@@ -31,7 +31,7 @@ jobs:
31
steps:
32
- uses: actions/setup-go@v3
33
with:
34
- go-version: 1.19.1
34
+ go-version: 1.19.x
35
- uses: actions/checkout@v3
36
- uses: protocol/cache-go-action@v1
37
with:
.github/workflows/gotest.yml
+1
-1
@@ -32,7 +32,7 @@ jobs:
32
- name: Set up Go
33
uses: actions/setup-go@v3
34
with:
35
- go-version: 1.19.1
35
+ go-version: 1.19.x
36
- name: Check out Kubo
37
uses: actions/checkout@v3
38
- name: Restore Go cache
.github/workflows/sharness.yml
+1
-1
@@ -25,7 +25,7 @@ jobs:
25
- name: Setup Go
26
uses: actions/setup-go@v3
27
with:
28
- go-version: 1.19.1
28
+ go-version: 1.19.x
29
- name: Checkout Kubo
30
uses: actions/checkout@v3
31
with:
Dockerfile
+1
-1
@@ -1,4 +1,4 @@
1
-FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.19.1-buster
1
+FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.19-buster
2
LABEL maintainer="Steven Allen <steven@stebalien.com>"
3
4
ARG TARGETPLATFORM