Skip to content

Commit 691ddec

Browse files
committed
chore: update Go version and base images
- Update the `go-version` to `^1` in the `.github/workflows/lint.yml` file - Change the container in the `.github/workflows/lint.yml` file from `golang:1.20-alpine` to `golang:1.21-alpine` - Update the base image in the `docker/Dockerfile` file from `alpine:3.19` to `alpine:3.17` Signed-off-by: appleboy <appleboy.tw@gmail.com>
1 parent a9c0fd3 commit 691ddec

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup go
1212
uses: actions/setup-go@v5
1313
with:
14-
go-version: '^1'
14+
go-version: "^1"
1515
- name: Checkout repository
1616
uses: actions/checkout@v3
1717
- name: Setup golangci-lint
@@ -27,7 +27,7 @@ jobs:
2727

2828
testing:
2929
runs-on: ubuntu-latest
30-
container: golang:1.20-alpine
30+
container: golang:1.21-alpine
3131
steps:
3232
- name: Checkout repository
3333
uses: actions/checkout@v3

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.19
1+
FROM alpine:3.17
22

33
ARG TARGETOS
44
ARG TARGETARCH

0 commit comments

Comments
 (0)