fix: docker auth bugs #7343
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: gofmt | |
| # We only want one run of this on a branch | |
| # if you push another commit the previous run should cancel | |
| concurrency: | |
| group: "gofmt-${{ github.ref }}" | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| check-if-code-change: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| change: ${{ steps.check.outputs.change }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| go-version: '1.23' | |
| fetch-depth: 0 | |
| - run: | | |
| if git --no-pager diff --exit-code origin/main...HEAD -- . ':!docs' ':!*.md'; then | |
| echo "::set-output name=change::false" | |
| else | |
| echo "::set-output name=change::true" | |
| fi | |
| id: check | |
| gofmt: | |
| needs: check-if-code-change | |
| if: ${{ needs.check-if-code-change.outputs.change == 'true' }} | |
| name: gofmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: '1.23' | |
| - uses: actions/checkout@v3 | |
| - run: scripts/generate-kurtosis-version.sh | |
| - uses: Jerome1337/gofmt-action@v1.0.5 | |
| with: | |
| gofmt-path: './' | |
| gofmt-flags: '-l -d -s' |