Skip to content

Commit b5d35e5

Browse files
author
navigaid
committed
go1.19rc2
1 parent 7ad848a commit b5d35e5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM btwiuse/arch
22

3-
RUN curl -sL https://go.dev/dl/go1.19rc1.linux-amd64.tar.gz | tar -xzC /usr/local/ && cp /usr/local/go/bin/go /usr/bin/go
3+
RUN curl -sL https://go.dev/dl/go1.19rc2.linux-amd64.tar.gz | tar -xzC /usr/local/ && cp /usr/local/go/bin/go /usr/bin/go
44

55
RUN pacman -Syu --noconfirm --overwrite='*' \
66
docker clang android-ndk rustup deno pkgfile yarn npm wget htop dstat neofetch &&\

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,19 @@ jobs:
6565
submodules: recursive
6666

6767
- name: go version
68-
uses: docker://library/golang:1.19rc1
68+
uses: docker://library/golang:1.19rc2
6969
with:
7070
entrypoint: bash
7171
args: -c "which go && go version"
7272

7373
- name: go get
74-
uses: docker://library/golang:1.19rc1
74+
uses: docker://library/golang:1.19rc2
7575
with:
7676
entrypoint: bash
7777
args: -c "make go-get || make go-get || make go-get"
7878

7979
- name: go install
80-
uses: docker://library/golang:1.19rc1
80+
uses: docker://library/golang:1.19rc2
8181
with:
8282
entrypoint: bash
8383
args: -c "make go-install-debuginfo"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
strategy:
1414
matrix:
15-
go-version: [1.19rc1]
15+
go-version: [1.19rc2]
1616
platform: [ubuntu-latest, macos-latest, windows-latest]
1717
runs-on: ${{ matrix.platform }}
1818
steps:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# WORKDIR /k0s.io
66
# RUN make bazel-build
77

8-
FROM btwiuse/golang:1.19rc1 AS builder-go
8+
FROM golang:1.19rc2 AS builder-go
99
COPY . /k0s.io
1010
WORKDIR /k0s.io
1111
RUN make build

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ go_rules_dependencies()
3939

4040
go_register_toolchains(
4141
nogo = "@//:nogo",
42-
version = "1.19rc1",
42+
version = "1.19rc2",
4343
) # nogo is in the top-level BUILD file of this workspace
4444

4545
git_repository(

0 commit comments

Comments
 (0)