Bump go4.org/unsafe/assume-no-moving-gc #370
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: Bump go4.org/unsafe/assume-no-moving-gc | |
on: | |
push: | |
schedule: | |
- cron: '0 0 * * *' # daily | |
jobs: | |
bump: | |
name: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref_name }} | |
- name: Install Nix shell | |
uses: diamondburned/cache-install@main | |
with: | |
shell-file: shell.nix | |
- name: Tidy up Go modules | |
run: go mod tidy | |
- name: Bump go4.org/unsafe/assume-no-moving-gc | |
run: | | |
( | |
cd pkg | |
go get -u go4.org/unsafe/assume-no-moving-gc | |
go mod tidy | |
) | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Bump go4.org/unsafe/assume-no-moving-gc |