chore(deps): bump golang.org/x/image from 0.0.0-20191206065243-da761ea9ff43 to 0.18.0 in /contribs/gnomd in the go_modules group across 1 directory #1844
Workflow file for this run
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: Dependabot Tidy Go Mods | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- '**/go.mod' | |
- '**/go.sum' | |
jobs: | |
tidy_go_mods: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Tidy all Go mods | |
env: | |
VERIFY_MOD_SUMS: false | |
run: | | |
# Ensure Make is installed | |
make --version | |
# Run the tidy target | |
make tidy | |
- name: Commit changes, if any | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
skip_dirty_check: false # Enable dirty check, and skip unnecessary committing | |
commit_message: "Run 'go mod tidy' via GitHub Actions" |