Skip to content

Commit 16170df

Browse files
authored
chore: bump Go to 1.26 (#2001)
Signed-off-by: Terry Howe <terrylhowe@gmail.com>
1 parent 0318f98 commit 16170df

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
go-version: ['1.25']
30+
go-version: ['1.26']
3131
fail-fast: true
3232
steps:
3333
- name: Checkout

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
security-events: write
3636
strategy:
3737
matrix:
38-
go-version: ['1.25']
38+
go-version: ['1.26']
3939
fail-fast: false
4040
steps:
4141
- name: Checkout repository

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
go-version: ['1.25']
30+
go-version: ['1.26']
3131
fail-fast: true
3232
steps:
3333
- name: Checkout

.github/workflows/release-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: setup go environment
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: '1.25.7'
32+
go-version: '1.26.1'
3333
- name: run goreleaser
3434
uses: goreleaser/goreleaser-action@v6
3535
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313

14-
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.25.7-alpine as builder
14+
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.26.1-alpine as builder
1515
ARG TARGETPLATFORM
1616
RUN apk add git make
1717
ENV ORASPKG /oras

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module oras.land/oras
22

3-
go 1.25.7
3+
go 1.26.1
44

55
require (
66
github.com/Masterminds/sprig/v3 v3.3.0

test/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module oras.land/oras/test/e2e
22

3-
go 1.25.7
3+
go 1.26.1
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.25.2

test/e2e/go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.25.7
1+
go 1.26.1
22

33
use (
44
.

0 commit comments

Comments
 (0)