From 88ce2c16cf6ad21d1d0f307db87c9ec005e526c3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 23:29:07 +0000 Subject: [PATCH] chore(deps): update go to v1.23.0 --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test-and-tag.yml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 8175a39..8c212b9 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version: 1.22.6 + go-version: 1.23.0 - name: Install go tooling run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 39fcad0..3f09d84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Go uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version: 1.22.6 + go-version: 1.23.0 - uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 with: diff --git a/.github/workflows/test-and-tag.yml b/.github/workflows/test-and-tag.yml index 0e9cbff..82b4e58 100644 --- a/.github/workflows/test-and-tag.yml +++ b/.github/workflows/test-and-tag.yml @@ -18,7 +18,7 @@ jobs: uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: # renovate: go-version - go-version: 1.22.6 + go-version: 1.23.0 - name: Run go tests shell: bash diff --git a/Dockerfile b/Dockerfile index 1c65364..abb7bdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.6-alpine as builder +FROM golang:1.23.0-alpine as builder RUN apk add --no-cache make diff --git a/go.mod b/go.mod index 666fcc9..6f60db0 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/envelope-zero/standalone go 1.22 -toolchain go1.22.6 +toolchain go1.23.0 require ( github.com/adrg/xdg v0.5.0