Skip to content

Bump GHA in workflows to latest major releases #115

Bump GHA in workflows to latest major releases

Bump GHA in workflows to latest major releases #115

Workflow file for this run

name: test
on: [pull_request]
jobs:
unit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- run: make test
e2e:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
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@v4
if: failure()
with:
name: e2e-logs
path: build/artifacts/e2e-logs