Image digest update #9
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: Image digest update | |
on: | |
workflow_dispatch: | |
schedule: | |
# At the end of every day | |
- cron: '0 0 * * *' | |
jobs: | |
image-update: | |
name: Image digest update | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # to push the updates | |
pull-requests: write # to open Pull requests | |
id-token: write # used to sign the commits using gitsign | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update the image digest | |
uses: chainguard-dev/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
signoff: true # optional | |
author: specklebot <[email protected]> # optional | |
committer: specklebot <[email protected]> # optional | |
labels-for-pr: # optional | |
branch-for-pr: update-image-digests # optional | |
title-for-pr: 'chore(deps): bump image digests' # optional | |
commit-message: Update image digests # optional |