Skip to content

Commit

Permalink
go v1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
d-led committed Aug 21, 2023
1 parent 1adcaba commit 3cea97d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '>=1.20.1'
go-version: '>=1.21.0'
-
name: Build & Package
run: ./github_build.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.21.x]
os: [ubuntu-latest]
#, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Notable changes will be documented here

## 0.9.33

- Go v1.21

## 0.9.32

- Go v1.20
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM golang:1.20 AS builder
FROM golang:1.21 AS builder
WORKDIR /link-checker-service/
# cache dependencies
COPY go.mod go.sum ./
Expand All @@ -19,6 +19,7 @@ RUN addgroup -S lcsgroup && adduser -S lcsuser -G lcsgroup
# run
FROM scratch
EXPOSE 8080
WORKDIR /

# copy tls certificates
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
Expand Down
2 changes: 1 addition & 1 deletion test/jquery_example/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM golang:1.20 AS builder
FROM golang:1.21 AS builder
WORKDIR /sample-ui/
# cache dependencies (no go.sum in this project)
COPY go.mod ./
Expand Down

0 comments on commit 3cea97d

Please sign in to comment.