Merge pull request #14678 from ahrtr/go1.19.3

bump go version to 1.19.3 to address security fixes
This commit is contained in:
Marek Siarkowicz
2022-11-02 12:12:48 +01:00
committed by GitHub
14 changed files with 14 additions and 14 deletions

View File

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

View File

@@ -7,5 +7,5 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.2"
go-version: "1.19.3"
- run: make -C contrib/mixin tools test

View File

@@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.2"
go-version: "1.19.3"
- 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.19.2"
go-version: "1.19.3"
- 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.19.2"
go-version: "1.19.3"
- run: date
- env:
TARGET: ${{ matrix.target }}

View File

@@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.2"
go-version: "1.19.3"
- run: GOARCH=amd64 CPU=4 make fuzz
- uses: actions/upload-artifact@v2
if: failure()

View File

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

View File

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

View File

@@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.2"
go-version: "1.19.3"
- run: |
pushd tools/mod; go install go.etcd.io/gofail; popd
mkdir -p /tmp/linearizability

View File

@@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.2"
go-version: "1.19.3"
- run: |
git config --global user.email "github-action@etcd.io"
git config --global user.name "Github Action"

View File

@@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.19.2"
go-version: "1.19.3"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:

View File

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

View File

@@ -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.19.2
ENV GO_VERSION 1.19.3
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 \

View File

@@ -1,5 +1,5 @@
TMP_DOCKERFILE:=$(shell mktemp)
GO_VERSION ?= 1.19.2
GO_VERSION ?= 1.19.3
TMP_DIR_MOUNT_FLAG = --tmpfs=/tmp:exec
ifdef HOST_TMP_DIR
TMP_DIR_MOUNT_FLAG = --mount type=bind,source=$(HOST_TMP_DIR),destination=/tmp