Skip to content

chore(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 in the github-actions group #121

chore(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 in the github-actions group

chore(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 in the github-actions group #121

Workflow file for this run

name: Release pipeline
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
with:
go-version: 1.24
- uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
with:
go-version: 1.24
- run: go test -v ./...
release:
runs-on: ubuntu-latest
needs: test
permissions:
contents: write
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
with:
go-version: 1.24
- uses: go-semantic-release/action@2e9dc4247a6004f8377781bef4cb9dad273a741f # v1.24.1
if: github.ref == 'refs/heads/main'
with:
hooks: goreleaser
allow-initial-development-versions: true
changelog-file: CHANGELOG.md
update-file: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}