🌱 Bump softprops/action-gh-release #130
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: PR dependabot go modules fix | |
# This action runs on PRs opened by dependabot and updates modules. | |
on: | |
pull_request: | |
branches: | |
- dependabot/** | |
push: | |
branches: | |
- dependabot/** | |
workflow_dispatch: | |
permissions: | |
contents: write # Allow to update the PR. | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2 | |
- name: Calculate go version | |
id: vars | |
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # tag=v5.1.0 | |
with: | |
go-version: ${{ steps.vars.outputs.go_version }} | |
- name: Update all modules | |
run: make modules | |
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # tag=v9.1.4 | |
name: Commit changes | |
with: | |
author_name: dependabot[bot] | |
author_email: 49699333+dependabot[bot]@users.noreply.github.com | |
default_author: github_actor | |
message: 'Update generated code' |