Skip to content

Commit 9ef808e

Browse files
retornamsondavidb
authored andcommitted
Upgrade Golang and docker packages
CONTAINERD_VERSION: 1.7.28 RUNC_VERSION: 1.3.1 NERDCTL_VERSION: 2.1.6 GOLANGCI_LINT_VERSION: 2.5.0 shellcheck-alpine: v0.11.0 Signed-off-by: Raymond Etornam <retornam@users.noreply.github.com>
1 parent 7fd4815 commit 9ef808e

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
- '!benchmark/**'
2222

2323
env:
24-
GO_VERSION: '1.24.4'
24+
GO_VERSION: '1.24.9'
2525

2626
jobs:
2727
setup:
@@ -55,7 +55,7 @@ jobs:
5555
fail-fast: false
5656
matrix:
5757
os: ${{ fromJSON(needs.setup.outputs.available-runners) }}
58-
containerd: ["1.6.38", "1.7.27", "2.0.5", "2.1.3"]
58+
containerd: ["1.6.39", "1.7.28", "2.0.6", "2.1.4"]
5959
env:
6060
DOCKER_BUILD_ARGS: "CONTAINERD_VERSION=${{ matrix.containerd }}"
6161
steps:

.github/workflows/bump-deps.yml

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

1010
env:
11-
GO_VERSION: '1.24.4'
11+
GO_VERSION: '1.24.9'
1212

1313
permissions:
1414
contents: write

.github/workflows/comparision-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'Makefile'
1212

1313
env:
14-
GO_VERSION: '1.24.4'
14+
GO_VERSION: '1.24.9'
1515

1616
jobs:
1717
check:

.github/workflows/prebuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
branches: ['main', 'release/**']
88

99
env:
10-
GO_VERSION: '1.24.4'
11-
GOLANGCI_LINT_VERSION: '2.1.6'
10+
GO_VERSION: '1.24.9'
11+
GOLANGCI_LINT_VERSION: '2.5.0'
1212

1313
jobs:
1414
check:
@@ -71,7 +71,7 @@ jobs:
7171

7272
shellcheck:
7373
runs-on: ubuntu-22.04
74-
container: koalaman/shellcheck-alpine:v0.10.0
74+
container: koalaman/shellcheck-alpine:v0.11.0
7575
steps:
7676
- uses: actions/checkout@v5
7777
- run: shellcheck ./**/*.sh

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- 'Makefile'
1313

1414
env:
15-
GO_VERSION: '1.24.4'
15+
GO_VERSION: '1.24.9'
1616

1717
permissions:
1818
contents: write

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG CONTAINERD_VERSION=1.7.27
16-
ARG RUNC_VERSION=1.3.0
15+
16+
ARG CONTAINERD_VERSION=1.7.28
17+
ARG RUNC_VERSION=1.3.1
1718
ARG NERDCTL_VERSION=2.1.6
1819
ARG IGZIP_VERSION=2.31.1
1920
ARG RAPIDGZIP_VERSION=0.14.3

cmd/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/awslabs/soci-snapshotter/cmd
22

3-
go 1.24.0
3+
go 1.24.9
44

55
require (
66
github.com/awslabs/soci-snapshotter v0.0.0-local

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/awslabs/soci-snapshotter
22

3-
go 1.24.0
3+
go 1.24.9
44

55
require (
66
github.com/containerd/containerd v1.7.28

0 commit comments

Comments
 (0)