fix(deps): update module github.com/hashicorp/vault/api to v1.23.0 #325
Workflow file for this run
This file contains hidden or 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: CGO | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| name: Go Build (CGO) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: stable | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v6 | |
| - name: Install make (Windows) | |
| if: runner.os == 'Windows' | |
| run: choco install -y make mingw | |
| - name: Setup | |
| if: runner.os == 'Linux' | |
| run: make setup | |
| - name: Check | |
| run: make check | |
| env: | |
| CGO_ENABLED: "0" | |
| - name: Teardown | |
| if: runner.os == 'Linux' | |
| run: make teardown |