chore(deps): update dependency aquaproj/aqua to v2.43.1 #5225
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: aqua | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
goos: [darwin, linux] | |
goarch: [amd64, arm64] | |
runs-on: ubuntu-latest | |
env: | |
AQUA_CONFIG: config/aqua/aqua.yaml | |
AQUA_LOG_COLOR: always | |
AQUA_POLICY_CONFIG: config/aqua/aqua-policy.yaml | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
# NOTE: use paths-filter instead of on.pull_request.paths to trigger test always | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
aqua: | |
- .github/workflows/aqua.yaml | |
- config/aqua/aqua.yaml | |
- config/aqua/experimental.yaml | |
- name: Install aqua | |
if: steps.filter.outputs.aqua == 'true' | |
uses: aquaproj/[email protected] | |
with: | |
aqua_version: v2.43.1 | |
- uses: actions/setup-go@v5 | |
if: steps.filter.outputs.aqua == 'true' | |
with: | |
go-version: "1.22.1" | |
- name: Run test | |
if: steps.filter.outputs.aqua == 'true' | |
run: aqua install | |
env: | |
AQUA_GOARCH: ${{ matrix.goarch }} | |
AQUA_GOOS: ${{ matrix.goos }} |