Skip to content

Bump github.com/hashicorp/vault/sdk from 0.25.0 to 0.25.1 #236

Bump github.com/hashicorp/vault/sdk from 0.25.0 to 0.25.1

Bump github.com/hashicorp/vault/sdk from 0.25.0 to 0.25.1 #236

Workflow file for this run

---
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@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
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@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: '1.25.4'
check-latest: false
- name: Checkout codebase
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Perform lint checks
run: |
go install golang.org/x/lint/golint@v0.0.0-20241112194109-818c5a804067
make lint
- name: Perform format checks
run: make format
- name: Perform vet checks
run: make vet
- name: Run test suite
run: |
make test
go generate
...