mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
da22bf8eb8
* Update to Go 1.15 image (#1758) * feat: use go 1.15 Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: remove darwin_386 Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> Co-authored-by: Simon Jürgensmeyer <sj14@users.noreply.github.com>
41 lines
883 B
YAML
41 lines
883 B
YAML
name: gosum
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/workflows/gosum.yml'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
|
|
jobs:
|
|
fix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.2
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15
|
|
-
|
|
name: Tidy
|
|
run: |
|
|
rm -f go.sum
|
|
go mod tidy
|
|
-
|
|
name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: "chore(deps): go mod tidy"
|
|
title: "chore(deps): go mod tidy"
|
|
body: |
|
|
Current `go.mod` and `go.sum` don't match the source code.
|
|
branch: go-mod-tidy
|
|
branch-suffix: timestamp
|
|
labels: automerge
|