chore: bump to go1.21 (#717) #1514
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: PushLint | |
on: [ push ] | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@master | |
with: | |
go-version: '1.21' | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@master | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@master | |
with: | |
version: latest | |
- name: Commit back | |
if: ${{ !github.head_ref }} | |
continue-on-error: true | |
run: | | |
git config --local user.name 'github-actions[bot]' | |
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
git add --all | |
git commit -m "🎨 改进代码样式" | |
- name: Create Pull Request | |
if: ${{ !github.head_ref }} | |
continue-on-error: true | |
uses: peter-evans/create-pull-request@v4 |