depup #1495
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: depup | |
on: | |
schedule: | |
- cron: '14 14 * * *' | |
jobs: | |
depup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haya14busa/action-depup@v1 | |
id: depup | |
with: | |
file: Dockerfile | |
version_name: BUMP_VERSION | |
repo: haya14busa/bump | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
title: "chore(deps): update haya14busa/bump to ${{ steps.depup.outputs.latest }}" | |
commit-message: "chore(deps): update haya14busa/bump to ${{ steps.depup.outputs.latest }}" | |
body: | | |
Update haya14busa/bump to [v${{ steps.depup.outputs.latest }}](https://github.com/haya14busa/bump/releases/tag/v${{ steps.depup.outputs.latest }}) | |
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Adepup). | |
branch: depup/bump | |
base: master | |
labels: "bump:minor" |