diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d81d67c..e7b43fc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: build: strategy: matrix: - version: [1.21,'1.22'] + version: ['1.23'] os: [ubuntu-latest, macos-latest] name: Build runs-on: ${{ matrix.os }} @@ -50,7 +50,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: 1.21 + go-version: 1.23 - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v6 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 45d4c4f..5cfa9f8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.22.11 + go-version: 1.23.5 - name: Build the executables run: ./mkrel.sh anydb ${{ github.ref_name}} diff --git a/Dockerfile b/Dockerfile index a3add89..3e8a8fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . # -FROM golang:1.22-alpine as builder +FROM golang:1.23-alpine as builder RUN apk update RUN apk upgrade