Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4.0.0 to 5.0.1.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](4d34df0c23...cdcb360436)
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
103 lines
3.2 KiB
YAML
103 lines
3.2 KiB
YAML
name: build_test
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths-ignore:
|
|
- "**.md"
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths-ignore:
|
|
- "**.md"
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
name: "Lint"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Set up Go 1.19
|
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
|
with:
|
|
go-version: 1.19
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
|
|
# source: https://github.com/golangci/golangci-lint-action
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 # v3.4.0
|
|
with:
|
|
version: v1.50.0
|
|
|
|
helm_build_test:
|
|
name: "[Helm] Build and Test"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # v2.4.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Set up Go 1.19
|
|
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
|
|
with:
|
|
go-version: 1.19
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
|
|
- name: Bootstrap e2e
|
|
env:
|
|
KIND_VERSION: 0.17.0
|
|
BATS_VERSION: 1.8.2
|
|
run: |
|
|
mkdir -p $GITHUB_WORKSPACE/bin
|
|
echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH
|
|
GOBIN="${GITHUB_WORKSPACE}/bin" go install sigs.k8s.io/kind@v${KIND_VERSION}
|
|
curl -sSLO https://github.com/bats-core/bats-core/archive/v${BATS_VERSION}.tar.gz && tar -zxvf v${BATS_VERSION}.tar.gz && bash bats-core-${BATS_VERSION}/install.sh ${GITHUB_WORKSPACE}
|
|
|
|
- name: Create a kind cluster and install Gatekeeper
|
|
env:
|
|
GATEKEEPER_VERSION: 3.11.0
|
|
KUBERNETES_VERSION: 1.26.0
|
|
run: |
|
|
kind create cluster --image kindest/node:v${KUBERNETES_VERSION} --name gatekeeper
|
|
|
|
helm repo add gatekeeper https://open-policy-agent.github.io/gatekeeper/charts
|
|
helm install gatekeeper/gatekeeper \
|
|
--version ${GATEKEEPER_VERSION} \
|
|
--set enableExternalData=true \
|
|
--name-template=gatekeeper \
|
|
--namespace gatekeeper-system \
|
|
--create-namespace \
|
|
--debug
|
|
|
|
- name: Build and install external-data-provider
|
|
run: |
|
|
./scripts/generate-tls-cert.sh
|
|
make docker-buildx kind-load-image
|
|
helm install external-data-provider charts/external-data-provider \
|
|
--set provider.tls.caBundle="$(cat certs/ca.crt | base64 | tr -d '\n\r')" \
|
|
--namespace gatekeeper-system \
|
|
--wait --debug
|
|
|
|
- name: Run e2e
|
|
run: |
|
|
bats -t test/bats/test.bats
|