diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f98f632..8db7cec 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,25 +1,25 @@ { - "name": "Go Codespace", - "build": { - "dockerfile": "Dockerfile" - }, - "customizations": { - "vscode": { - "settings": { - "[dockerfile]": { - "editor.defaultFormatter": "ms-azuretools.vscode-containers" - }, - "editor.formatOnSave": true, - "files.insertFinalNewline": true, - "files.trimFinalNewlines": true, - "files.trimTrailingWhitespace": true - }, - "extensions": [ - "davidanson.vscode-markdownlint", - "docker.docker", - "ms-azuretools.vscode-containers", - "redhat.vscode-yaml" - ] - } - } + "name": "Go Codespace", + "build": { + "dockerfile": "Dockerfile", + }, + "customizations": { + "vscode": { + "settings": { + "[dockerfile]": { + "editor.defaultFormatter": "ms-azuretools.vscode-containers", + }, + "editor.formatOnSave": true, + "files.insertFinalNewline": true, + "files.trimFinalNewlines": true, + "files.trimTrailingWhitespace": true, + }, + "extensions": [ + "davidanson.vscode-markdownlint", + "docker.docker", + "ms-azuretools.vscode-containers", + "redhat.vscode-yaml", + ], + }, + }, } diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 153276d..c7b7749 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,8 +10,8 @@ jobs: strategy: matrix: go-version: - - "1.23" - - "1.24" + - "1.25" + - "1.26" steps: - name: Set up Docker buildx uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12f4b24..f4777b7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: - main env: - LATEST_GO_VERSION: "1.24" + LATEST_GO_VERSION: "1.26" jobs: build_and_upload_image: @@ -17,8 +17,8 @@ jobs: strategy: matrix: go-version: - - "1.23" - - "1.24" + - "1.25" + - "1.26" steps: - name: Set up Docker buildx uses: docker/setup-buildx-action@v3 diff --git a/.vscode/extensions.json b/.vscode/extensions.json index af48243..5fabcbc 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,8 +1,8 @@ { - "recommendations": [ - "davidanson.vscode-markdownlint", - "docker.docker", - "ms-azuretools.vscode-containers", - "redhat.vscode-yaml" - ] + "recommendations": [ + "davidanson.vscode-markdownlint", + "docker.docker", + "ms-azuretools.vscode-containers", + "redhat.vscode-yaml", + ], } diff --git a/.vscode/settings.json b/.vscode/settings.json index 4b4b2ed..7a835fb 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,9 @@ { - "[dockerfile]": { - "editor.defaultFormatter": "ms-azuretools.vscode-containers" - }, - "editor.formatOnSave": true, - "files.insertFinalNewline": true, - "files.trimFinalNewlines": true, - "files.trimTrailingWhitespace": true + "[dockerfile]": { + "editor.defaultFormatter": "ms-azuretools.vscode-containers", + }, + "editor.formatOnSave": true, + "files.insertFinalNewline": true, + "files.trimFinalNewlines": true, + "files.trimTrailingWhitespace": true, } diff --git a/Dockerfile b/Dockerfile index e7d9489..86b548c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -ARG GO_VERSION="1.24" +ARG GO_VERSION="1.26" FROM golang:${GO_VERSION}-alpine AS build ENV CGO_ENABLED="0"