chore(deps): update docker/build-push-action action to v6 #1151
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test github-changelog-generator | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.1 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1.27 | |
- name: Run github-changelog-generator | |
uses: ./ | |
with: | |
output: 'HISTORY.md' | |
- name: Run github-changelog-generator with PAT token. | |
uses: ./ | |
with: | |
output: 'HISTORY.md' | |
token: ${{ secrets.PAT_TOKEN }} |