From 2b570d9e53295a9470ec68d7532d57abf8823737 Mon Sep 17 00:00:00 2001 From: swfz Date: Wed, 2 Nov 2022 02:18:10 +0900 Subject: [PATCH] Upgrade actions/checkout to v3 in extension template (#6543) --- 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 0266208e0..dfda64d0e 100644 --- a/pkg/cmd/extension/ext_tmpls/goBinWorkflow.yml +++ b/pkg/cmd/extension/ext_tmpls/goBinWorkflow.yml @@ -10,5 +10,5 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: cli/gh-extension-precompile@v1 diff --git a/pkg/cmd/extension/ext_tmpls/otherBinWorkflow.yml b/pkg/cmd/extension/ext_tmpls/otherBinWorkflow.yml index ac67c3c78..5b7c867a1 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@v2 + - uses: actions/checkout@v3 - uses: cli/gh-extension-precompile@v1 with: build_script_override: "script/build.sh"