fix: handle notice response during auth and terminate the creds retrieval process #755
Workflow file for this run
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: Check that version has been updated | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: | |
- 'main' | |
jobs: | |
version_updated: | |
name: Bump version | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Verify Versions Updated | |
uses: tj-actions/changed-files@v41 | |
id: verify_changed_files | |
with: | |
files: | | |
VERSION | |
- name: Fail Unless Versions Updated | |
id: fail_unless_changed | |
if: steps.verify_changed_files.outputs.any_changed == 'false' | |
run: | | |
echo "::error ::Please update the VERSION file" | |
exit 1 |