Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependencies: upgrade go and envoy #4116

Merged
merged 2 commits into from Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yaml
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yaml
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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"
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
@@ -1 +1 @@
golang 1.19.2
golang 1.20.3
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion scripts/get-envoy.bash
Expand Up @@ -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
Expand Down