chore(deps): update dependency go to v1.23.2 #7711
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: build | |
on: | |
push: | |
branches: | |
- feature/workflows | |
- main | |
paths-ignore: | |
- "README.md" | |
- "docs/**" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "README.md" | |
- "docs/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: /home/runner/work/open-feature/flagd | |
GOBIN: /home/runner/work/open-feature/flagd/bin | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setup go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5 | |
with: | |
go-version-file: 'flagd/go.mod' | |
- run: make workspace-init | |
- run: make lint | |
docs-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setup go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5 | |
with: | |
go-version-file: 'flagd/go.mod' | |
- run: make workspace-init | |
- run: make generate-docs | |
- name: Check no diff | |
run: | | |
if [ ! -z "$(git status --porcelain)" ]; then echo "Doc generation produced diff. Run 'make generate-docs' and commit results."; exit 1; fi | |
test: | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: /home/runner/work/open-feature/flagd | |
GOBIN: /home/runner/work/open-feature/flagd/bin | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setup go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5 | |
with: | |
go-version-file: 'flagd/go.mod' | |
- run: make workspace-init | |
- run: make test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4 | |
docker-local: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
submodules: recursive | |
- name: Setup go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5 | |
with: | |
go-version-file: 'flagd/go.mod' | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@master | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- name: Build | |
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5 | |
with: | |
context: . | |
file: ./flagd/build.Dockerfile | |
outputs: type=docker,dest=${{ github.workspace }}/flagd-local.tar | |
tags: flagd-local:test | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@0.28.0 | |
with: | |
input: ${{ github.workspace }}/flagd-local.tar | |
format: "sarif" | |
output: "trivy-results.sarif" | |
severity: "CRITICAL,HIGH" | |
env: | |
# use an alternative trivvy db to avoid rate limits | |
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db:2,ghcr.io/aquasecurity/trivy-db:2 | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3 | |
with: | |
sarif_file: "trivy-results.sarif" | |
integration-test: # caching tests are disabled due to slow file I/O in github actions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
submodules: recursive | |
- name: Setup go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5 | |
with: | |
go-version-file: 'flagd/go.mod' | |
- name: Install envoy | |
run: | | |
wget -O- https://apt.envoyproxy.io/signing.key | sudo gpg --dearmor -o /etc/apt/keyrings/envoy-keyring.gpg | |
echo "deb [signed-by=/etc/apt/keyrings/envoy-keyring.gpg] https://apt.envoyproxy.io jammy main" | sudo tee /etc/apt/sources.list.d/envoy.list | |
sudo apt-get update | |
sudo apt-get install envoy | |
envoy --version | |
- name: Workspace init | |
run: make workspace-init | |
- name: Build flagd binary | |
run: make build | |
- name: Run flagd binary in background | |
run: | | |
./bin/flagd start \ | |
-f file:${{ github.workspace }}/test-harness/flags/testing-flags.json \ | |
-f file:${{ github.workspace }}/test-harness/flags/custom-ops.json \ | |
-f file:${{ github.workspace }}/test-harness/flags/evaluator-refs.json \ | |
-f file:${{ github.workspace }}/test-harness/flags/zero-flags.json \ | |
-f file:${{ github.workspace }}/test-harness/flags/edge-case-flags.json & | |
- name: Run evaluation test suite | |
run: go clean -testcache && go test -cover ./test/integration |