This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
chore(deps): update dependency aquaproj/aqua-registry to v4.151.0 #989
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: test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
AQUA_LOG_COLOR: always | |
GITHUB_TOKEN: ${{ github.token }} | |
jobs: | |
ci-info: | |
runs-on: ubuntu-latest | |
env: | |
AQUA_CONFIG: aqua/ci-info.yaml | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: aquaproj/[email protected] | |
with: | |
aqua_version: v2.24.0 | |
- uses: suzuki-shunsuke/ci-info-action/[email protected] | |
- run: echo "https://github.com/aquaproj/aqua-registry/pull/$CI_INFO_PR_NUMBER" >> "$GITHUB_STEP_SUMMARY" | |
test: | |
needs: ci-info | |
strategy: | |
matrix: | |
env: | |
- runs-on: windows-latest | |
- runs-on: ubuntu-latest | |
- runs-on: macos-latest | |
- runs-on: ubuntu-latest | |
goarch: arm64 | |
- runs-on: ubuntu-latest | |
goos: darwin | |
goarch: arm64 | |
- runs-on: windows-latest | |
goarch: arm64 | |
runs-on: ${{ matrix.env.runs-on }} | |
defaults: | |
run: | |
shell: bash | |
env: | |
AQUA_CONFIG: aqua/test.yaml | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: suzuki-shunsuke/ci-info-action/[email protected] | |
# - name: Generate token | |
# id: generate_token | |
# uses: tibdex/github-app-token@v1 | |
# with: | |
# app_id: ${{ secrets.APP_ID }} | |
# private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- uses: aquaproj/[email protected] | |
with: | |
aqua_version: v2.24.0 | |
- uses: aquaproj/registry-action/[email protected] | |
with: | |
goos: ${{ matrix.env.goos }} | |
goarch: ${{ matrix.env.goarch }} | |
go_version: "1.18.5" | |
# env: | |
# GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
# This job is used for branch protection rule | |
# Add this job to `Status checks that are required` | |
status-check: | |
runs-on: ubuntu-latest | |
needs: [test] | |
if: failure() | |
steps: | |
- run: exit 1 |