diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8567224..294a1f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '>=1.21.0' + go-version: '>=1.23.0' - uses: rhysd/action-setup-vim@v1 - uses: rhysd/action-setup-vim@v1 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 215f4ad..5eeec9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,10 +11,10 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '>=1.21.0' - - uses: goreleaser/goreleaser-action@v5 + go-version: '>=1.23.0' + - uses: goreleaser/goreleaser-action@v6 with: - version: latest - args: --rm-dist + version: '~> v2' + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 35d2d7a..63e0b01 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,13 +1,9 @@ +version: 2 + release: draft: false prerelease: true -# No dependencies in this repo -# -# before: -# hooks: -# - go mod download - builds: - id: macos goos: [darwin] @@ -47,4 +43,4 @@ archives: format: zip changelog: - skip: true + disable: true