ci(deps): update module github.com/prometheus/client_golang to v1.23.2 - autoclosed #8490
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: Verify and Release | |
| permissions: | |
| issues: write | |
| checks: write | |
| contents: write | |
| pull-requests: write | |
| on: | |
| - push | |
| - pull_request | |
| env: | |
| LEFTHOOK: 0 | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: meza/action-go-setup@main | |
| id: go | |
| name: Set up Go | |
| with: | |
| go-version: 'latest' | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| - name: Lint | |
| run: make lint | |
| - name: Check coverage | |
| run: make coverage | |
| - name: Race tests | |
| run: make test-race | |
| - name: Build Distributables | |
| run: make build | |
| env: | |
| MODRINTH_API_KEY: ${{ secrets.MODRINTH_API_KEY }} | |
| CURSEFORGE_API_KEY: ${{ secrets.CURSEFORGE_API_KEY }} | |
| POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }} | |
| # - name: Release | |
| # if: ${{ steps.go.outputs.new-release-published == 'true' }} | |
| # env: | |
| # GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| # run: | | |
| # npx semantic-release |