Skip to content

fix(deps): update module cloud.google.com/go/storage to v1.47.0 (#778) #129

fix(deps): update module cloud.google.com/go/storage to v1.47.0 (#778)

fix(deps): update module cloud.google.com/go/storage to v1.47.0 (#778) #129

Workflow file for this run

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 "[email protected]"
git checkout -b vendored
go mod vendor
git add .
git commit -m "vendored"
git push -f origin vendored