From 456c1727769f23ad3ead065bffddb00f2b7a66e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Tue, 18 Jul 2023 14:03:59 +0200 Subject: [PATCH] actions: Update go version to 1.20 --- .github/workflows/build.yml | 14 +++++++------- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/test.yml | 2 +- .github/workflows/wireproxy.yml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eaf9e39..71ee23e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Building Windows amd64 Version run: | CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o WireProxy_amd64.exe -v ./cmd/wireproxy @@ -36,7 +36,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Building Windows arm64 Version run: | CGO_ENABLED=0 GOOS=windows GOARCH=arm64 go build -o WireProxy_arm64.exe -v ./cmd/wireproxy @@ -56,7 +56,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Building Linux amd64 Version run: | CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o WireProxy_amd64 -v ./cmd/wireproxy @@ -76,7 +76,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Building Linux arm64 Version run: | CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o WireProxy_arm64 -v ./cmd/wireproxy @@ -96,7 +96,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Building Linux s390x Version run: | CGO_ENABLED=0 GOOS=linux GOARCH=s390x go build -o WireProxy_s390x -v ./cmd/wireproxy @@ -116,7 +116,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Building Darwin amd64 Version run: | CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o WireProxy_amd64 -v ./cmd/wireproxy @@ -136,7 +136,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Building Darwin arm64 Version run: | CGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o WireProxy_arm64 -v ./cmd/wireproxy diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 9b62170..3b60df1 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/setup-go@v2 with: - go-version: '1.19' + go-version: '1.20' - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0a55f77..e3aff57 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: - name: Setting up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: "1.20" - name: Install dependencies run: sudo apt install wireguard curl - name: Building wireproxy diff --git a/.github/workflows/wireproxy.yml b/.github/workflows/wireproxy.yml index ff523f6..7ba2d55 100644 --- a/.github/workflows/wireproxy.yml +++ b/.github/workflows/wireproxy.yml @@ -30,7 +30,7 @@ jobs: - name: Set up GoReleaser uses: actions/setup-go@v2 with: - go-version: "1.19" + go-version: "1.20" - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2