Skip to content

Commit

Permalink
Merge pull request #7767 from thaJeztah/1.5_update_go_1.18.9
Browse files Browse the repository at this point in the history
[release/1.5] update to go1.18.9
  • Loading branch information
estesp committed Dec 7, 2022
2 parents 99a380d + 46e2ef0 commit 2f59a97
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
go-version: [1.18.8]
go-version: [1.18.9]
os: [ubuntu-18.04, macos-12, windows-2019]

steps:
Expand All @@ -46,7 +46,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'

- uses: actions/checkout@v2
with:
Expand All @@ -72,7 +72,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'

- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'
- uses: actions/checkout@v2
- run: go install github.com/cpuguy83/go-md2man/v2@v2.0.1
- run: make man
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'
- uses: actions/checkout@v2
- run: |
set -e -x
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-18.04, macos-12, windows-2019]
go-version: ['1.18.8']
go-version: ['1.18.9']

steps:
- uses: actions/setup-go@v2
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'

- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'

- uses: actions/checkout@v2

Expand Down Expand Up @@ -468,7 +468,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'
- uses: actions/checkout@v2
- run: sudo -E PATH=$PATH script/setup/install-gotestsum
- name: Tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'

- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'

- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.18.8'
go-version: '1.18.9'

- name: Set env
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Expand Up @@ -77,7 +77,7 @@ Vagrant.configure("2") do |config|
config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
sh.upload_path = "/tmp/vagrant-install-golang"
sh.env = {
'GO_VERSION': ENV['GO_VERSION'] || "1.18.8",
'GO_VERSION': ENV['GO_VERSION'] || "1.18.9",
}
sh.inline = <<~SHELL
#!/usr/bin/env bash
Expand Down
2 changes: 1 addition & 1 deletion contrib/Dockerfile.test
Expand Up @@ -10,7 +10,7 @@
#
# docker build -t containerd-test --build-arg RUNC_VERSION=v1.0.0-rc93 -f Dockerfile.test ../

ARG GOLANG_VERSION=1.18.8
ARG GOLANG_VERSION=1.18.9

FROM golang:${GOLANG_VERSION} AS golang-base
RUN mkdir -p /go/src/github.com/containerd/containerd
Expand Down

0 comments on commit 2f59a97

Please sign in to comment.