Skip to content

Commit

Permalink
chore: go v1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
d-led committed Mar 19, 2024
1 parent a5be874 commit dc7bdd7
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.21.0'
go-version: '>=1.22.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.21.x]
go-version: [1.22.x]
os: [ubuntu-latest]
#, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Notable changes will be documented here

## 0.9.36

- upgraded dependencies
- Go v1.22

## 0.9.35

- upgraded dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder
WORKDIR /link-checker-service/
# cache dependencies
COPY go.mod go.sum ./
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.21 AS builder
FROM golang:1.22 AS builder
WORKDIR /sample-ui/
# cache dependencies (no go.sum in this project)
COPY go.mod ./
Expand Down

0 comments on commit dc7bdd7

Please sign in to comment.