build(deps): bump github.com/jackc/pgx/v5 from 5.7.6 to 5.8.0 in the other group #3488
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: main | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| go-version: stable | |
| python-version: 3.x | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.python-version }} | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ env.go-version }} | |
| - name: Lint | |
| uses: pre-commit/[email protected] | |
| with: | |
| extra_args: --all-files | |
| check-goreleaser-config: | |
| name: Check goreleaser.yml | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ env.go-version }} | |
| - uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| version: latest | |
| args: check -f .goreleaser.yml | |
| verify: | |
| name: Verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ env.go-version }} | |
| - name: Verify | |
| run: make verify | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ env.go-version }} | |
| - name: Test | |
| run: make test | |
| kindtest: | |
| name: Kind test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ env.go-version }} | |
| - name: Setup kind | |
| run: make setup-kind | |
| - name: Run kindtest | |
| run: make kindtest | |
| dry-run: | |
| name: Dry-run release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: docker/setup-qemu-action@v3 | |
| - uses: docker/setup-buildx-action@v3 | |
| - uses: anchore/sbom-action/[email protected] | |
| - name: Setup go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ env.go-version }} | |
| - name: GoReleaser | |
| uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| version: latest | |
| args: --snapshot --skip=sign,publish --clean | |
| - name: Test built containers | |
| run: make container-structure-test |