diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 48cca2a..1996570 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -36,8 +36,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - # pin because of https://github.com/nektos/act/issues/1908 - go-version: 1.20.5 + go-version: '1.20' - uses: actions/checkout@v3 diff --git a/Dockerfile b/Dockerfile index a441325..eb15271 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ #Build stage -# Switch back to 1.20 instead of 1.20.5 when https://github.com/nektos/act/issues/1908 is resolved -FROM golang:1.20.5-alpine3.18 AS build-env +FROM golang:1.20-alpine3.18 AS build-env RUN apk --no-cache add build-base git