Skip to content

Commit 0c6357c

Browse files
authored
Merge pull request #344 from northtyphoon/update-golang
chore: upgrade golang to 1.26
2 parents f8c14ca + 22bf634 commit 0c6357c

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
go-version: [1.23]
19+
go-version: [1.26]
2020

2121
steps:
2222
- uses: actions/setup-go@v6
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v6
2727
- uses: golangci/golangci-lint-action@v9
2828
with:
29-
version: v2.7
29+
version: v2.9
3030
skip-cache: true
3131
args: --timeout=5m
3232

.github/workflows/ci-build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
type: string
1414

1515
env:
16-
GO_VERSION: "1.23"
16+
GO_VERSION: "1.26"
1717
OBD_VERSION: "1.0.12"
1818

1919
jobs:

.github/workflows/ci-unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: install Go
2323
uses: actions/setup-go@v6
2424
with:
25-
go-version: '1.23'
25+
go-version: '1.26'
2626

2727
- name: set env
2828
shell: bash

.github/workflows/ci-userspace-convertor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: install Go
8686
uses: actions/setup-go@v6
8787
with:
88-
go-version: '1.23'
88+
go-version: '1.26'
8989

9090
- name: set env
9191
shell: bash

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/setup-go@v6
2626
with:
27-
go-version: '1.23'
27+
go-version: '1.26'
2828

2929
# Initializes the CodeQL tools for scanning.
3030
- name: Initialize CodeQL

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- "v*"
99

1010
env:
11-
GO_VERSION: "1.23"
11+
GO_VERSION: "1.26"
1212

1313
jobs:
1414
build:

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Add to /etc/containerd/config.toml:
121121

122122
## Dependencies
123123

124-
- Go >= 1.23.x
124+
- Go >= 1.26.x
125125
- containerd >= 2.0.x
126126
- runc >= 1.0
127127
- overlaybd backstore (https://github.com/containerd/overlaybd)

ci/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/containerd/accelerated-container-image/ci/e2e
22

3-
go 1.23.0
3+
go 1.26.0
44

55
require (
66
github.com/containerd/containerd/v2 v2.0.7

cmd/convertor/resources/samples/run-userspace-convertor-ubuntu.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ RUN apt update && \
1919
apt install -y pkg-config
2020

2121
# Download and install Golang version 1.21
22-
RUN wget https://go.dev/dl/go1.23.2.linux-amd64.tar.gz && \
23-
tar -C /usr/local -xzf go1.23.2.linux-amd64.tar.gz && \
24-
rm go1.23.2.linux-amd64.tar.gz
22+
RUN wget https://go.dev/dl/go1.26.0.linux-amd64.tar.gz && \
23+
tar -C /usr/local -xzf go1.26.0.linux-amd64.tar.gz && \
24+
rm go1.26.0.linux-amd64.tar.gz
2525

2626
# Set environment variables
2727
ENV PATH="/usr/local/go/bin:${PATH}"

docs/BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This doc includes:
1111

1212
## Requirements
1313

14-
* Install Go >= 1.23.x
14+
* Install Go >= 1.26.x
1515
* Install runc >= 1.0
1616
* Install containerd >= 2.0.x
1717
* See [Downloads at containerd.io](https://containerd.io/downloads/).

0 commit comments

Comments
 (0)