From 7c7c7b1b5a5e680929b0a07219d6a386c362479f Mon Sep 17 00:00:00 2001 From: Caleb Doxsey Date: Thu, 20 Oct 2022 11:09:38 -0600 Subject: [PATCH] upgrade go --- .github/workflows/benchmark.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/test.yaml | 14 +++++++------- .tool-versions | 1 + go.mod | 2 +- 5 files changed, 11 insertions(+), 10 deletions(-) create mode 100644 .tool-versions diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index a583f9a8ad7..37b22653301 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.18.x] + go-version: [1.19.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 c1d396e9216..9473acaadfe 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -33,7 +33,7 @@ jobs: - name: Set up Go uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f with: - go-version: 1.18.x + go-version: 1.19.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 410531ab608..77f39ff7f8f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,7 @@ jobs: test: strategy: matrix: - go-version: [1.18.x] + go-version: [1.19.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.18.x] + go-version: [1.19.x] node-version: [16.x] steps: - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f @@ -113,7 +113,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.18.x] + go-version: [1.19.x] node-version: [16.x] platform: [ubuntu-latest] deployment: [kubernetes, multi, nginx, single, traefik] @@ -160,7 +160,7 @@ jobs: build: strategy: matrix: - go-version: [1.18.x] + go-version: [1.19.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@c4a742cab115ed795e34d4513e2cf7d472deb55f with: - go-version: 1.18.x + go-version: 1.19.x - uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 with: python-version: "3.x" @@ -240,14 +240,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.18.x] + go-version: [1.19.x] platform: [ubuntu-latest] needs: - build steps: - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f with: - go-version: 1.18.x + go-version: 1.19.x - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 diff --git a/.tool-versions b/.tool-versions new file mode 100644 index 00000000000..fe2801dc2bb --- /dev/null +++ b/.tool-versions @@ -0,0 +1 @@ +golang 1.19.2 diff --git a/go.mod b/go.mod index 7d29544a427..a34d1b8087f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pomerium/pomerium -go 1.18 +go 1.19 require ( contrib.go.opencensus.io/exporter/jaeger v0.2.1