Skip to content

Commit

Permalink
Update depup action (#12)
Browse files Browse the repository at this point in the history
Signed-off-by: Mikhail Grachev <work@mgrachev.com>
  • Loading branch information
mgrachev authored May 25, 2020
1 parent 694ec16 commit b98f903
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/depup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ on:
schedule:
- cron: '14 14 * * *' # Runs at 14:14 UTC every day
repository_dispatch:
types: [depup-reviewdog,depup-hadolint]
types: [depup]

jobs:
reviewdog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haya14busa/action-depup@v1
id: depup-reviewdog
id: depup
with:
file: Dockerfile
version_name: REVIEWDOG_VERSION
Expand All @@ -21,19 +21,23 @@ jobs:
uses: peter-evans/create-pull-request@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: "chore(deps): update reviewdog to ${{ steps.depup-reviewdog.outputs.latest }}"
commit-message: "chore(deps): update reviewdog to ${{ steps.depup-reviewdog.outputs.latest }}"
title: "chore(deps): update reviewdog to ${{ steps.depup.outputs.latest }}"
commit-message: "chore(deps): update reviewdog to ${{ steps.depup.outputs.latest }}"
body: |
Update reviewdog to [v${{ steps.depup-reviewdog.outputs.latest }}](https://github.com/reviewdog/reviewdog/releases/tag/v${{ steps.depup-reviewdog.outputs.latest }})
Compare [v${{ steps.depup-reviewdog.outputs.current }}...v${{ steps.depup-reviewdog.outputs.latest }}](https://github.com/reviewdog/reviewdog/compare/v${{ steps.depup-reviewdog.outputs.current }}...v${{ steps.depup-reviewdog.outputs.latest }})
Update reviewdog to [v${{ steps.depup.outputs.latest }}](https://github.com/reviewdog/reviewdog/releases/tag/v${{ steps.depup.outputs.latest }})
Compare [v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }}](https://github.com/reviewdog/reviewdog/compare/v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }})
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Adepup).
branch: depup/reviewdog
base: master
labels: "bump:minor"

hadolint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haya14busa/action-depup@v1
id: depup-hadolint
id: depup
with:
file: Dockerfile
version_name: HADOLINT_VERSION
Expand All @@ -43,11 +47,11 @@ jobs:
uses: peter-evans/create-pull-request@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: "chore(deps): update hadolint to ${{ steps.depup-hadolint.outputs.latest }}"
commit-message: "chore(deps): update hadolint to ${{ steps.depup-hadolint.outputs.latest }}"
title: "chore(deps): update hadolint to ${{ steps.depup.outputs.latest }}"
commit-message: "chore(deps): update hadolint to ${{ steps.depup.outputs.latest }}"
body: |
Update hadolint to [v${{ steps.depup-hadolint.outputs.latest }}](https://github.com/hadolint/hadolint/releases/tag/v${{ steps.depup-hadolint.outputs.latest }})
Compare [v${{ steps.depup-hadolint.outputs.current }}...v${{ steps.depup-hadolint.outputs.latest }}](https://github.com/hadolint/hadolint/compare/v${{ steps.depup-hadolint.outputs.current }}...v${{ steps.depup-hadolint.outputs.latest }})
Update hadolint to [v${{ steps.depup.outputs.latest }}](https://github.com/hadolint/hadolint/releases/tag/v${{ steps.depup.outputs.latest }})
Compare [v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }}](https://github.com/hadolint/hadolint/compare/v${{ steps.depup.outputs.current }}...v${{ steps.depup.outputs.latest }})
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3Adepup).
branch: depup/hadolint
Expand Down

0 comments on commit b98f903

Please sign in to comment.