From 7300d04b617f3be92b2af0abedb7c991f31c505e Mon Sep 17 00:00:00 2001 From: szktkfm Date: Sun, 18 May 2025 21:50:49 +0900 Subject: [PATCH] fix release pipeline --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 98654e6..3529cc2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,17 +11,17 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version-file: go.mod cache: true - - uses: goreleaser/goreleaser-action@v4 + - uses: goreleaser/goreleaser-action@v6 with: - args: release --rm-dist + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}