Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2
- name: Setup Go environment
uses: actions/setup-go@v5.4.0
uses: actions/setup-go@v6.2.0
with:
go-version: stable
cache: false
- name: Download Go dependencies
run: go mod tidy
- name: GolangCI Lint
uses: golangci/golangci-lint-action@v7 # v6.0.1 -> v7.0.0
uses: golangci/golangci-lint-action@v9 # v6.0.1 -> v7.0.0
with:
args: --timeout=5m
version: v2.0
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ jobs:
release_snapshot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2 # v4
- uses: actions/checkout@v6.0.2 # v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5.4.0 # v5
- uses: actions/setup-go@v6.2.0 # v5
with:
go-version: stable
- name: Ensure Go
run: go version
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v6
uses: goreleaser/goreleaser-action@v7
with:
install-only: true
version: '~> v2'
- name: Show GoReleaser version
run: goreleaser -v

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
uses: goreleaser/goreleaser-action@v7
if: success() && startsWith(github.ref, 'refs/tags/')
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
Expand Down
Loading