From 5fcd7af5dedbcdd143325653d372003cc1ed5c0b Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Thu, 21 Nov 2024 14:26:24 -0800 Subject: [PATCH] Update Go to 1.23.3 Signed-off-by: Phil Estes --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/codespell.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- hack/Dockerfile.alpine | 2 +- hack/Dockerfile.linux | 2 +- v2/go.mod | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 990837a9..2f0d9f5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - go-version: [1.23.2] + go-version: [1.23.3] os: [ubuntu-22.04, macos-14, windows-2019] steps: @@ -62,7 +62,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '1.23.2' + go-version: '1.23.3' - name: Set env shell: bash @@ -107,7 +107,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.23.2' + go-version: '1.23.3' - name: Set env shell: bash @@ -137,7 +137,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.23.2' + go-version: '1.23.3' - name: Set env shell: bash @@ -182,7 +182,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.23.2' + go-version: '1.23.3' - name: Set env shell: bash diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 3ebbf550..e30648fd 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -17,6 +17,6 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Codespell - uses: codespell-project/actions-codespell@v2 + uses: codespell-project/actions-codespell@v2.1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67ad5428..0a05047b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,7 +58,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23.2' + go-version: '1.23.3' - name: Set env shell: bash @@ -151,7 +151,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23.2' + go-version: '1.23.3' - name: Set env shell: bash @@ -195,7 +195,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23.2' + go-version: '1.23.3' - name: Set env shell: bash diff --git a/hack/Dockerfile.alpine b/hack/Dockerfile.alpine index 86219496..a0e6fd77 100644 --- a/hack/Dockerfile.alpine +++ b/hack/Dockerfile.alpine @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.23.2-alpine AS bld +FROM --platform=$BUILDPLATFORM golang:1.23.3-alpine AS bld ARG TARGETPLATFORM ARG TARGETARCH ARG TARGETVARIANT diff --git a/hack/Dockerfile.linux b/hack/Dockerfile.linux index adbb71c4..747b5e44 100644 --- a/hack/Dockerfile.linux +++ b/hack/Dockerfile.linux @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.23.2-alpine AS bld +FROM --platform=$BUILDPLATFORM golang:1.23.3-alpine AS bld ARG TARGETPLATFORM ARG TARGETARCH ARG TARGETVARIANT diff --git a/v2/go.mod b/v2/go.mod index 56f32c06..38c916cc 100644 --- a/v2/go.mod +++ b/v2/go.mod @@ -2,7 +2,7 @@ module github.com/estesp/manifest-tool/v2 go 1.22.0 -toolchain go1.23.2 +toolchain go1.23.3 require ( github.com/containerd/containerd/v2 v2.0.0