chore: bump golang from af9b40f
to 39b7e6e
in /constraint
#1323
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gatekeeper_test | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
gk-test: | |
name: "Gatekeeper Test" | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- name: Set up Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: "1.22" | |
check-latest: true | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
path: go/src/github.com/open-policy-agent/frameworks | |
- name: Check out Gatekeeper default branch | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
repository: open-policy-agent/gatekeeper | |
path: go/src/github.com/open-policy-agent/gatekeeper | |
- name: Update Frameworks dependency in Gatekeeper | |
run: | | |
go mod edit -replace github.com/open-policy-agent/frameworks/constraint=${GITHUB_WORKSPACE}/go/src/github.com/open-policy-agent/frameworks/constraint | |
go mod tidy | |
go mod vendor | |
working-directory: go/src/github.com/open-policy-agent/gatekeeper | |
- name: Make test | |
run: make test | |
working-directory: go/src/github.com/open-policy-agent/gatekeeper |