Bump docker/login-action from 4.5.2 to 4.6.0 #68
Workflow file for this run
This file contains hidden or 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: Branch | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: branch-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/_lint.yml | |
| with: | |
| # not github.event.before: that is the all-zero SHA when the branch is | |
| # first pushed. `master...HEAD` is what the branch adds, either way. | |
| from-ref: origin/master | |
| to-ref: ${{ github.sha }} | |
| build: | |
| uses: ./.github/workflows/_build.yml |