*: Bump to go 1.17.5

dependabot/go_modules/go.uber.org/atomic-1.10.0
Manuel Rüger 2021-11-18 14:08:54 +01:00
parent 96a9fd0a1e
commit ce50f68166
9 changed files with 12 additions and 12 deletions

View File

@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.17.2"
go-version: "1.17.5"
- env:
TARGET: ${{ matrix.target }}
run: |

View File

@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.17.2"
go-version: "1.17.5"
- run: date
- env:
TARGET: ${{ matrix.target }}

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.17.2"
go-version: "1.17.5"
- run: date
- env:
TARGET: ${{ matrix.target }}

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.17.2"
go-version: "1.17.5"
- run: date
- env:
TARGET: ${{ matrix.target }}

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.17.2"
go-version: "1.17.5"
- run: date
- env:
TARGET: ${{ matrix.target }}

View File

@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.17.2"
go-version: "1.17.5"
- run: date
- env:
TARGET: ${{ matrix.target }}

View File

@ -6,7 +6,7 @@ sudo: required
services: docker
go:
- "1.17.2"
- "1.17.5"
- tip
notifications:
@ -21,14 +21,14 @@ env:
matrix:
fast_finish: true
allow_failures:
- go: "1.17.2"
- go: "1.17.5"
env: TARGET=linux-amd64-coverage
- go: tip
env: TARGET=linux-amd64-fmt-unit-go-tip-2-cpu
exclude:
- go: tip
env: TARGET=linux-amd64-coverage
- go: "1.17.2"
- go: "1.17.5"
env: TARGET=linux-amd64-fmt-unit-go-tip-2-cpu
before_install:

View File

@ -39,7 +39,7 @@ clean:
rm -rf ./tests/e2e/default.proxy
find ./ -name "127.0.0.1:*" -o -name "localhost:*" -o -name "*.log" -o -name "agent-*" -o -name "*.coverprofile" -o -name "testname-proxy-*" | $(XARGS)
GO_VERSION ?= 1.17.2
GO_VERSION ?= 1.17.5
ETCD_VERSION ?= $(shell git rev-parse --short HEAD || echo "GitNotFound")
TEST_SUFFIX = $(shell date +%s | base64 | head -c 15)

View File

@ -1,4 +1,4 @@
FROM fedora:28
FROM fedora:35
RUN dnf check-update || true \
&& dnf install --assumeyes \
@ -13,7 +13,7 @@ RUN dnf check-update || true \
ENV GOROOT /usr/local/go
ENV GOPATH /go
ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}
ENV GO_VERSION 1.14.3
ENV GO_VERSION 1.17.5
ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang
RUN rm -rf ${GOROOT} \
&& curl -s ${GO_DOWNLOAD_URL}/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local/ -xz \