From 630006f49f140c742f24c69a93e77b2994ace811 Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Thu, 1 Oct 2020 18:01:51 +0200 Subject: [PATCH] chore: remove obsolete workflow 'Bump Go' Superseded by dependabot --- .github/versions/go | 1 - .github/workflows/bump-go.yml | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 .github/versions/go delete mode 100644 .github/workflows/bump-go.yml diff --git a/.github/versions/go b/.github/versions/go deleted file mode 100644 index 4ea8ad8..0000000 --- a/.github/versions/go +++ /dev/null @@ -1 +0,0 @@ -1.14.3 diff --git a/.github/workflows/bump-go.yml b/.github/workflows/bump-go.yml deleted file mode 100644 index c0057b3..0000000 --- a/.github/workflows/bump-go.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Bump Go -on: - schedule: - - cron: 00 7 * * * - push: - branches: - - master -jobs: - bump-go: - runs-on: ubuntu-20.04 - steps: - - name: Clone current repo - uses: actions/checkout@v2 - - - name: Ensure Go is up-to-date - id: bump-go - uses: BBVA/bump-go@main - with: - go-version-path: .github/versions/go - - - name: Create pull request - uses: peter-evans/create-pull-request@v3 - with: - author: GitHub - title: "chore: bump Go version" - commit-message: Bump Go to version ${{ steps.bump-go.outputs.go-version }} - branch: bump-go/patch - delete-branch: true