fix(deps): update module github.com/minio/minio-go/v7 to v7.0.97 (#971) #326
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: keep vendored branch up to date | |
| on: | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: vendor | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "bat+bot@sbz.fr" | |
| git checkout -b vendored | |
| go mod vendor | |
| git add . | |
| git commit -m "vendored" | |
| git push -f origin vendored |