Skip to content

Commit

Permalink
feat: Update the Go version
Browse files Browse the repository at this point in the history
  • Loading branch information
ZPascal committed Aug 14, 2024
1 parent ac0b474 commit d1c8297
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go_cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"

- name: Check out code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
cache: false

- name: Run golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# Changelog
- v0.16:
- Switched to go 1.23
- v0.15.2:
- Bump the libraries
- v0.15.1:
- Bump the libraries
- v0.15:
- Disable the Go codecov
- Bump the libraries
- v0.14:
- Switched to go 1.22
- v0.13.1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.5-alpine3.19 AS builder
FROM golang:1.23-alpine3.20 AS builder

RUN apk add -U --no-cache ca-certificates gcc musl-dev git

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ See the INSTALL section for information on how to do this.

## Installation

1. Install [Go 1.22 or newer](https://golang.org/doc/install).
1. Install [Go 1.23 or newer](https://golang.org/doc/install).
2. Build acme-dns:

```bash
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/joohoi/acme-dns

go 1.22.0
go 1.23.0

toolchain go1.22.2
toolchain go1.23.2

require (
github.com/BurntSushi/toml v1.4.0
Expand Down

0 comments on commit d1c8297

Please sign in to comment.