From 5761a1e669653a57ed59a1a663254819a0251d7b Mon Sep 17 00:00:00 2001 From: fchimpan Date: Tue, 30 Dec 2025 23:39:34 +0900 Subject: [PATCH] Update actions/checkout to v6 in extension workflow templates --- pkg/cmd/extension/ext_tmpls/goBinWorkflow.yml | 2 +- pkg/cmd/extension/ext_tmpls/otherBinWorkflow.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/extension/ext_tmpls/goBinWorkflow.yml b/pkg/cmd/extension/ext_tmpls/goBinWorkflow.yml index b804448c6..d63a84278 100644 --- a/pkg/cmd/extension/ext_tmpls/goBinWorkflow.yml +++ b/pkg/cmd/extension/ext_tmpls/goBinWorkflow.yml @@ -12,7 +12,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: cli/gh-extension-precompile@v2 with: generate_attestations: true diff --git a/pkg/cmd/extension/ext_tmpls/otherBinWorkflow.yml b/pkg/cmd/extension/ext_tmpls/otherBinWorkflow.yml index 4eb99a4a4..bd6070e10 100644 --- a/pkg/cmd/extension/ext_tmpls/otherBinWorkflow.yml +++ b/pkg/cmd/extension/ext_tmpls/otherBinWorkflow.yml @@ -10,7 +10,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: cli/gh-extension-precompile@v2 with: build_script_override: "script/build.sh"