Bump github.com/hashicorp/vault/sdk from 0.10.2 to 0.11.0 #98
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: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
workflow_call: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
#os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Prepare OS | |
id: podman_install | |
run: | | |
sudo apt update -qqy | |
sudo apt install -qqy podman | |
systemctl --user start podman | |
echo "DOCKER_HOST=unix:///run/user/$UID/podman/podman.sock" >> "$GITHUB_ENV" | |
- name: Prepare Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: '1.21.5' | |
check_latest: false | |
- name: Checkout codebase | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Perform lint checks | |
run: | | |
go install golang.org/x/lint/golint@v0.0.0-20210508222113-6edffad5e616 | |
make lint | |
- name: Perform format checks | |
run: make simplify | |
- name: Perform vet checks | |
run: make vet | |
- name: Run test suite | |
run: make test | |
... |