From d6b2e60ee6fe4d8f23f8ad70c17067058b108916 Mon Sep 17 00:00:00 2001 From: Caleb Doxsey Date: Mon, 17 Apr 2023 15:57:18 -0600 Subject: [PATCH 1/2] dependencies: upgrade go and envoy --- .tool-versions | 2 +- scripts/get-envoy.bash | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tool-versions b/.tool-versions index fe2801dc2bb..850d43e16f2 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -golang 1.19.2 +golang 1.20.3 diff --git a/scripts/get-envoy.bash b/scripts/get-envoy.bash index 14b3ea5906b..ed22ed1d80e 100755 --- a/scripts/get-envoy.bash +++ b/scripts/get-envoy.bash @@ -5,7 +5,7 @@ PATH="$PATH:$(go env GOPATH)/bin" export PATH _project_root="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)/.." -_envoy_version=1.25.0 +_envoy_version=1.25.5 _dir="$_project_root/pkg/envoy/files" for _target in darwin-amd64 darwin-arm64 linux-amd64 linux-arm64; do From 949f8a16a5bdaa5cbbf48754c8d3ec8004e09599 Mon Sep 17 00:00:00 2001 From: Caleb Doxsey Date: Mon, 17 Apr 2023 16:02:47 -0600 Subject: [PATCH 2/2] upgrade go --- .github/workflows/benchmark.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/test.yaml | 14 +++++++------- go.mod | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index 90ce4380094..526536e6a4b 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.19.x] + go-version: [1.20.x] node-version: [16.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1cc86579580..fc60134647d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,7 +33,7 @@ jobs: - name: Set up Go uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 with: - go-version: 1.19.x + go-version: 1.20.x - name: Set up Docker run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c141888a50f..ff4beec0eb6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,7 @@ jobs: test: strategy: matrix: - go-version: [1.19.x] + go-version: [1.20.x] node-version: [16.x] platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} @@ -59,7 +59,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.19.x] + go-version: [1.20.x] node-version: [16.x] steps: - uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 @@ -113,7 +113,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.19.x] + go-version: [1.20.x] node-version: [16.x] platform: [ubuntu-latest] deployment: [multi, single] @@ -160,7 +160,7 @@ jobs: build: strategy: matrix: - go-version: [1.19.x] + go-version: [1.20.x] node-version: [16.x] platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} @@ -224,7 +224,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 with: - go-version: 1.19.x + go-version: 1.20.x - uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 with: python-version: "3.x" @@ -240,14 +240,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.19.x] + go-version: [1.20.x] platform: [ubuntu-latest] needs: - build steps: - uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 with: - go-version: 1.19.x + go-version: 1.20.x - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab diff --git a/go.mod b/go.mod index d67a4e32633..1eb7ff35c1a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pomerium/pomerium -go 1.19 +go 1.20 require ( contrib.go.opencensus.io/exporter/jaeger v0.2.1