Skip to content

Commit

Permalink
go1.19rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
navigaid committed Jul 14, 2022
1 parent 7ad848a commit a18888f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM btwiuse/arch

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
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

RUN pacman -Syu --noconfirm --overwrite='*' \
docker clang android-ndk rustup deno pkgfile yarn npm wget htop dstat neofetch &&\
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@ jobs:
submodules: recursive

- name: go version
uses: docker://library/golang:1.19rc1
uses: docker://library/golang:1.19rc2
with:
entrypoint: bash
args: -c "which go && go version"

- name: go get
uses: docker://library/golang:1.19rc1
uses: docker://library/golang:1.19rc2
with:
entrypoint: bash
args: -c "make go-get || make go-get || make go-get"

- name: go install
uses: docker://library/golang:1.19rc1
uses: docker://library/golang:1.19rc2
with:
entrypoint: bash
args: -c "make go-install-debuginfo"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.19rc1]
go-version: [1.19rc2]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# WORKDIR /k0s.io
# RUN make bazel-build

FROM btwiuse/golang:1.19rc1 AS builder-go
FROM golang:1.19rc2 AS builder-go
COPY . /k0s.io
WORKDIR /k0s.io
RUN make build
Expand Down
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ go_rules_dependencies()

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

git_repository(
Expand Down

0 comments on commit a18888f

Please sign in to comment.