From 281cfb54179441ac5aff6c4827d8bcf00e841118 Mon Sep 17 00:00:00 2001 From: Derek Etherton Date: Wed, 10 Dec 2025 10:08:15 -0800 Subject: [PATCH] anchor changie version for compatibility with go 1.24 --- .github/workflows/changie-gen.yaml | 2 +- .github/workflows/release.yaml | 2 +- Taskfile.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/changie-gen.yaml b/.github/workflows/changie-gen.yaml index f0bfd5a..569a299 100644 --- a/.github/workflows/changie-gen.yaml +++ b/.github/workflows/changie-gen.yaml @@ -45,7 +45,7 @@ jobs: steps.changelog_check.outputs.exists == 'false' uses: miniscruff/changie-action@v2 with: - version: latest + version: v1.23.0 args: new --kind Dependency --body "${{ github.event.workflow_run.display_title }}" - name: Commit & Push changes diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7f3b589..09cc67d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -60,7 +60,7 @@ jobs: then echo "Skip Changie..." else - go install github.com/miniscruff/changie@latest + go install github.com/miniscruff/changie@v1.23.0 changie batch ${{ steps.version.outputs.RELEASE_VERSION }} changie merge git add . diff --git a/Taskfile.yml b/Taskfile.yml index 70b3e1a..c90e23c 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -101,7 +101,7 @@ tasks: internal: true cmds: - task: go-install-tool - vars: { GO_TOOL: "changie", GO_TOOL_PATH: "github.com/miniscruff/changie@latest" } + vars: { GO_TOOL: "changie", GO_TOOL_PATH: "github.com/miniscruff/changie@v1.23.0" } install-gofumpt: desc: go install "gofumpt"