From 0d82f3abd87cc8141ace560ed89f3d26d52efb91 Mon Sep 17 00:00:00 2001 From: Christian Weichel Date: Wed, 12 Jun 2024 14:12:17 +0000 Subject: [PATCH] Bump go version --- .devcontainer/devcontainer.json | 2 +- .github/workflows/ci-build.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 186ebc4..d4b568c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "leeway", - "image": "mcr.microsoft.com/devcontainers/go:1.21", + "image": "mcr.microsoft.com/devcontainers/go:1.22", // Features to add to the dev container. More info: https://containers.dev/features. "features": {} } \ No newline at end of file diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index a17c33a..3580f85 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -16,9 +16,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Setup Golang - uses: actions/setup-go@v1 + uses: actions/setup-go@v5 with: - go-version: '1.21' + go-version: '1.22.4' - name: Download all Go modules run: | go mod download diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6950070..b4ffe2e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,9 +14,9 @@ jobs: with: fetch-depth: 0 - name: Setup Golang - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: "1.21" + go-version: "1.22.4" - name: Docker Login uses: docker/login-action@v1 with: