Update Actions version #237
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 Actions version | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
dump-contexts-to-log: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: vdaas/vald/.github/actions/dump-context@main | |
update-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.CI_TOKEN }} | |
- name: Set Git config | |
run: | | |
git config --global --add safe.directory ${GITHUB_WORKSPACE} | |
- uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Run update command | |
run: | | |
make REPO=vdaas update/actions | |
- name: Check difference | |
id: check_diff | |
run: | | |
if git diff --quiet --exit-code; then | |
echo "Nothing updated" | |
else | |
git diff && git status | |
echo "HAS_GIT_DIFF=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Create PR | |
if: ${{ steps.check_diff.outputs.HAS_GIT_DIFF == 'true' }} | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
author: "${{ secrets.CI_USER }} <[email protected]>" | |
token: ${{ secrets.CI_TOKEN }} | |
committer: "${{ secrets.CI_USER }} <[email protected]>" | |
commit-message: "automated changes" | |
signoff: true | |
delete-branch: true | |
base: main | |
branch: chore/update-actions | |
title: "chore(deps): bump GitHub Actions dependency updates" | |
body: "Automated pull request to update GitHub Actions dependencies." |