update-snapshots #1581
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: update-snapshots | |
on: | |
# will send emails to last editor of this cron syntax (distroless-bot) | |
schedule: | |
- cron: "35 20 * * *" | |
# allow this workflow to be manually run | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.20" | |
- name: Update snapshots | |
run: ./knife github-update-snapshots | |
- name: Run update sboms script | |
if: env.DISTROLESS_DIFF | |
run: | | |
for i in $(seq 5); do | |
bazel --bazelrc=$GITHUB_WORKSPACE/.github/workflows/ci.bazelrc fetch //private/pkg/test/oci_image:test_sboms && break || sleep 20; | |
done | |
bazel run @//private/pkg/test/oci_image:test_sboms | |
- name: Run update lockfile | |
if: env.DISTROLESS_DIFF | |
run: bazel mod deps --lockfile_mode=update | |
- name: Create commits | |
if: env.DISTROLESS_DIFF | |
id: create-commits | |
run: | | |
git checkout -b update-snapshots | |
# Set identity. | |
git config --global user.email "distroless-bot@google.com" | |
git config --global user.name "Distroless Bot" | |
# Commit changes | |
git add . | |
git commit -s -m "Bumping packages to latest stable versions" | |
git push --force origin HEAD | |
- name: Create Pull Request | |
if: env.DISTROLESS_DIFF | |
env: | |
GH_TOKEN: ${{ secrets.ACTIONS_TOKEN }} | |
run: | | |
BODY_FILE=$(mktemp) | |
printf "Bumping packages to latest stable version\n\`\`\`diff\n$DISTROLESS_DIFF\n\`\`\`\n" >> $BODY_FILE | |
if ! OUTPUT=$(gh pr create -B main -H update-snapshots -t "Bumping packages to latest stable versions" --body-file "$BODY_FILE" 2>&1) ; then | |
echo $OUTPUT | |
if [[ "${OUTPUT}" =~ "already exists" ]]; then | |
echo "PR already exists and it was updated. Ending successfully"; | |
exit 0; | |
else | |
exit 1; | |
fi | |
fi |