Skip to content

build(deps): bump github.com/gofrs/uuid/v5 from 5.2.0 to 5.3.0 #433

build(deps): bump github.com/gofrs/uuid/v5 from 5.2.0 to 5.3.0

build(deps): bump github.com/gofrs/uuid/v5 from 5.2.0 to 5.3.0 #433

---
# Dependabot Pull Requests are not updating the NOTICE.txt file, which causes the lint job to fail.
# This workflow will checkout the dependabot PR, update the NOTICE.txt file, and push the changes back to the PR.
name: update-dependabot-pr
on:
push:
branches:
- dependabot/go_modules/**
paths-ignore:
- NOTICE.txt
permissions:
contents: read
jobs:
update-dependabot-pr:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Update NOTICE.txt
run: make notice
- name: Debug diff
run: git status --porcelain
- name: Check if NOTICE.txt has changed
id: check-notice-diff
run: |
if git status --porcelain | grep -q 'NOTICE.txt'; then
echo "changed=true" >> "$GITHUB_OUTPUT"
else
echo "changed=false" >> "$GITHUB_OUTPUT"
fi
- name: Debug output
run: |-
echo 'changed: ${{ steps.check-notice-diff.outputs.changed }}'
# inspired by https://gist.github.com/swinton/03e84635b45c78353b1f71e41007fc7c
- name: Commit changes (signed)
if: ${{ steps.check-notice-diff.outputs.changed == 'true' }}
run: |
export BRANCH=${GITHUB_REF#refs/heads/}
export SHA=$(git rev-parse "$BRANCH:$FILE_TO_COMMIT")
gh api --method PUT "/repos/${REPO}/contents/$FILE_TO_COMMIT" \
--field message="Update $FILE_TO_COMMIT" \
--field content=@<(base64 -i $FILE_TO_COMMIT) \
--field sha="${SHA}" \
--field branch="${BRANCH}"
env:
FILE_TO_COMMIT: NOTICE.txt
REPO: ${{ github.repository }}
GH_TOKEN: ${{ github.token }}