Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 #105

Bump golang.org/x/net from 0.17.0 to 0.23.0

Bump golang.org/x/net from 0.17.0 to 0.23.0 #105

Workflow file for this run

name: test
on: [pull_request]
jobs:
unit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- run: make test
e2e:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: make -j1 kind-cluster deploy-cert-manager docker-build kind-load deploy e2e
- run: make kind-export-logs E2E_ARTIFACTS_DIRECTORY=build/artifacts/e2e-logs
if: failure()
- uses: actions/upload-artifact@v3
if: failure()
with:
name: e2e-logs
path: build/artifacts/e2e-logs