Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Go to 1.23.3 #276

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hack/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion hack/Dockerfile.linux
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion v2/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading