Skip to content

fix(deps): update module github.com/minio/madmin-go/v3 to v3.0.71 #267

fix(deps): update module github.com/minio/madmin-go/v3 to v3.0.71

fix(deps): update module github.com/minio/madmin-go/v3 to v3.0.71 #267

Workflow file for this run

name: Build
on:
pull_request: {}
push:
branches:
- master
jobs:
go-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Determine Go version from go.mod
run: echo "GO_VERSION=$(go mod edit -json | jq -r .Go)" >> $GITHUB_ENV
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run build
run: make build -e IMG_TAG=${GITHUB_REF##*/}