From e284d1e2ab70d476e93d0aceabe9ea32327c3c9b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Mar 2026 18:46:28 +0000 Subject: [PATCH 1/5] Initial plan From bf56fc9f4761e200c68e3bc6960de891fc35e03e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Mar 2026 19:13:33 +0000 Subject: [PATCH 2/5] fix: preserve callee workflow ref in caller-hosted relay activation checkout - Update resolve_host_repo.cjs to extract and emit target_ref from GITHUB_WORKFLOW_REF's @ref portion - Add crossRepoTargetRef field/methods to CheckoutManager - Extend GenerateGitHubFolderCheckoutStep to accept and emit ref: field - Expose target_ref as activation output alongside target_repo - Wire target_ref into the activation .github/.agents checkout step - Add comprehensive tests for all changes Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .../smoke-workflow-call-with-inputs.lock.yml | 2 + .../workflows/smoke-workflow-call.lock.yml | 2 + actions/setup/js/resolve_host_repo.cjs | 44 +++-- actions/setup/js/resolve_host_repo.test.cjs | 83 +++++++++ pkg/workflow/checkout_manager.go | 40 ++++- pkg/workflow/checkout_manager_test.go | 46 ++++- pkg/workflow/compiler_activation_job.go | 12 +- pkg/workflow/compiler_activation_job_test.go | 158 +++++++++++++++++- 8 files changed, 363 insertions(+), 24 deletions(-) diff --git a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml index bfa806d3dc..1bdf0cbdec 100644 --- a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml +++ b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml @@ -69,6 +69,7 @@ jobs: comment_repo: "" model: ${{ steps.generate_aw_info.outputs.model }} secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }} + target_ref: ${{ steps.resolve-host-repo.outputs.target_ref }} target_repo: ${{ steps.resolve-host-repo.outputs.target_repo }} steps: - name: Checkout actions folder @@ -135,6 +136,7 @@ jobs: with: persist-credentials: false repository: ${{ steps.resolve-host-repo.outputs.target_repo }} + ref: ${{ steps.resolve-host-repo.outputs.target_ref }} sparse-checkout: | .github .agents diff --git a/.github/workflows/smoke-workflow-call.lock.yml b/.github/workflows/smoke-workflow-call.lock.yml index 0c7415b0cf..cafb0d8386 100644 --- a/.github/workflows/smoke-workflow-call.lock.yml +++ b/.github/workflows/smoke-workflow-call.lock.yml @@ -57,6 +57,7 @@ jobs: comment_repo: "" model: ${{ steps.generate_aw_info.outputs.model }} secret_verification_result: ${{ steps.validate-secret.outputs.verification_result }} + target_ref: ${{ steps.resolve-host-repo.outputs.target_ref }} target_repo: ${{ steps.resolve-host-repo.outputs.target_repo }} steps: - name: Checkout actions folder @@ -123,6 +124,7 @@ jobs: with: persist-credentials: false repository: ${{ steps.resolve-host-repo.outputs.target_repo }} + ref: ${{ steps.resolve-host-repo.outputs.target_ref }} sparse-checkout: | .github .agents diff --git a/actions/setup/js/resolve_host_repo.cjs b/actions/setup/js/resolve_host_repo.cjs index a0685a4b5e..e6c94a0cf0 100644 --- a/actions/setup/js/resolve_host_repo.cjs +++ b/actions/setup/js/resolve_host_repo.cjs @@ -2,11 +2,11 @@ /// /** - * Resolves the target repository for the activation job checkout. + * Resolves the target repository and ref for the activation job checkout. * - * Uses GITHUB_WORKFLOW_REF to determine the platform (host) repository regardless - * of the triggering event. This fixes cross-repo activation for event-driven relays - * (e.g. on: issue_comment, on: push) where github.event_name is NOT 'workflow_call', + * Uses GITHUB_WORKFLOW_REF to determine the platform (host) repository and branch/ref + * regardless of the triggering event. This fixes cross-repo activation for event-driven + * relays (e.g. on: issue_comment, on: push) where github.event_name is NOT 'workflow_call', * so the expression introduced in #20301 incorrectly fell back to github.repository * (the caller's repo) instead of the platform repo. * @@ -18,10 +18,15 @@ * starts with the platform repo slug, while GITHUB_REPOSITORY is the caller repo. * Comparing the two lets us detect cross-repo invocations without relying on event_name. * - * SEC-005: The targetRepo value is resolved solely from trusted system environment - * variables (GITHUB_WORKFLOW_REF, GITHUB_REPOSITORY) set by the GitHub Actions - * runtime. It is not derived from user-supplied input, so no validateTargetRepo - * allowlist check is required in this handler. + * In a caller-hosted relay pinned to a feature branch (e.g. uses: platform/.github/workflows/ + * gateway.lock.yml@feature-branch), the @feature-branch portion is encoded in + * GITHUB_WORKFLOW_REF. Emitting it as target_ref allows the activation checkout to use + * the correct branch rather than the platform repo's default branch. + * + * SEC-005: The targetRepo and targetRef values are resolved solely from trusted system + * environment variables (GITHUB_WORKFLOW_REF, GITHUB_REPOSITORY, GITHUB_REF) set by the + * GitHub Actions runtime. They are not derived from user-supplied input, so no allowlist + * check is required in this handler. */ /** @@ -33,24 +38,39 @@ async function main() { // GITHUB_WORKFLOW_REF format: owner/repo/.github/workflows/file.yml@ref // The regex captures everything before the third slash segment (i.e., the owner/repo prefix). - const match = workflowRef.match(/^([^/]+\/[^/]+)\//); - const workflowRepo = match ? match[1] : ""; + const repoMatch = workflowRef.match(/^([^/]+\/[^/]+)\//); + const workflowRepo = repoMatch ? repoMatch[1] : ""; // Fall back to currentRepo when GITHUB_WORKFLOW_REF cannot be parsed const targetRepo = workflowRepo || currentRepo; + // Extract the ref portion after '@' from GITHUB_WORKFLOW_REF. + // GITHUB_WORKFLOW_REF format: owner/repo/.github/workflows/file.yml@ref + // The ref may be a full ref like "refs/heads/feature-branch", a short name like "main", + // a tag like "refs/tags/v1.0.0", or a commit SHA like "abc123def". + // + // When GITHUB_WORKFLOW_REF has no '@' segment (e.g., env var not set or malformed), + // fall back to an empty string so that actions/checkout uses the repository's default + // branch. We intentionally do NOT fall back to GITHUB_REF here because in cross-repo + // scenarios GITHUB_REF is the *caller* repo's ref, not the callee's, and using it + // would check out the wrong branch. + const refMatch = workflowRef.match(/@(.+)$/); + const targetRef = refMatch ? refMatch[1] : ""; + core.info(`GITHUB_WORKFLOW_REF: ${workflowRef}`); core.info(`GITHUB_REPOSITORY: ${currentRepo}`); core.info(`Resolved host repo for activation checkout: ${targetRepo}`); + core.info(`Resolved host ref for activation checkout: ${targetRef}`); if (targetRepo !== currentRepo && targetRepo !== "") { core.info(`Cross-repo invocation detected: platform repo is "${targetRepo}", caller is "${currentRepo}"`); - await core.summary.addRaw(`**Activation Checkout**: Checking out platform repo \`${targetRepo}\` (caller: \`${currentRepo}\`)`).write(); + await core.summary.addRaw(`**Activation Checkout**: Checking out platform repo \`${targetRepo}\` @ \`${targetRef}\` (caller: \`${currentRepo}\`)`).write(); } else { - core.info(`Same-repo invocation: checking out ${targetRepo}`); + core.info(`Same-repo invocation: checking out ${targetRepo} @ ${targetRef}`); } core.setOutput("target_repo", targetRepo); + core.setOutput("target_ref", targetRef); } module.exports = { main }; diff --git a/actions/setup/js/resolve_host_repo.test.cjs b/actions/setup/js/resolve_host_repo.test.cjs index a2b7d5cdb0..5b203caf05 100644 --- a/actions/setup/js/resolve_host_repo.test.cjs +++ b/actions/setup/js/resolve_host_repo.test.cjs @@ -32,6 +32,7 @@ describe("resolve_host_repo.cjs", () => { afterEach(() => { delete process.env.GITHUB_WORKFLOW_REF; delete process.env.GITHUB_REPOSITORY; + delete process.env.GITHUB_REF; }); it("should output the platform repo when invoked cross-repo", async () => { @@ -125,4 +126,86 @@ describe("resolve_host_repo.cjs", () => { expect(mockCore.info).toHaveBeenCalledWith(expect.stringContaining("GITHUB_WORKFLOW_REF:")); expect(mockCore.info).toHaveBeenCalledWith(expect.stringContaining("GITHUB_REPOSITORY:")); }); + + it("should output target_ref extracted from GITHUB_WORKFLOW_REF", async () => { + process.env.GITHUB_WORKFLOW_REF = "my-org/platform-repo/.github/workflows/gateway.lock.yml@refs/heads/feature-branch"; + process.env.GITHUB_REPOSITORY = "my-org/app-repo"; + + await main(); + + expect(mockCore.setOutput).toHaveBeenCalledWith("target_ref", "refs/heads/feature-branch"); + }); + + it("should output target_ref for a short branch ref (not refs/heads/...)", async () => { + process.env.GITHUB_WORKFLOW_REF = "my-org/platform-repo/.github/workflows/gateway.lock.yml@main"; + process.env.GITHUB_REPOSITORY = "my-org/app-repo"; + + await main(); + + expect(mockCore.setOutput).toHaveBeenCalledWith("target_ref", "main"); + }); + + it("should output target_ref for a feature branch in a caller-hosted relay", async () => { + // This is the exact scenario from the bug report: + // relay is pinned to @feature-branch, activation should check out feature-branch + process.env.GITHUB_WORKFLOW_REF = "my-org/platform-repo/.github/workflows/platform-gateway.lock.yml@refs/heads/my-feature"; + process.env.GITHUB_REPOSITORY = "my-org/app-repo"; + + await main(); + + expect(mockCore.setOutput).toHaveBeenCalledWith("target_repo", "my-org/platform-repo"); + expect(mockCore.setOutput).toHaveBeenCalledWith("target_ref", "refs/heads/my-feature"); + }); + + it("should output empty target_ref when GITHUB_WORKFLOW_REF has no @ segment (no GITHUB_REF fallback)", async () => { + // When GITHUB_WORKFLOW_REF has no '@', we cannot determine the callee ref. + // We intentionally do NOT fall back to GITHUB_REF because in cross-repo scenarios + // GITHUB_REF is the caller's ref, not the callee's. Empty string tells actions/checkout + // to use the repository's default branch. + process.env.GITHUB_WORKFLOW_REF = "not-a-valid-ref"; + process.env.GITHUB_REF = "refs/heads/fallback-branch"; + process.env.GITHUB_REPOSITORY = "my-org/fallback-repo"; + + await main(); + + expect(mockCore.setOutput).toHaveBeenCalledWith("target_ref", ""); + }); + + it("should output empty target_ref when GITHUB_WORKFLOW_REF is empty", async () => { + process.env.GITHUB_WORKFLOW_REF = ""; + delete process.env.GITHUB_REF; + process.env.GITHUB_REPOSITORY = "my-org/fallback-repo"; + + await main(); + + expect(mockCore.setOutput).toHaveBeenCalledWith("target_ref", ""); + }); + + it("should output target_ref for a tag ref", async () => { + process.env.GITHUB_WORKFLOW_REF = "my-org/platform-repo/.github/workflows/gateway.lock.yml@refs/tags/v1.0.0"; + process.env.GITHUB_REPOSITORY = "my-org/app-repo"; + + await main(); + + expect(mockCore.setOutput).toHaveBeenCalledWith("target_ref", "refs/tags/v1.0.0"); + }); + + it("should output target_ref for a commit SHA", async () => { + process.env.GITHUB_WORKFLOW_REF = "my-org/platform-repo/.github/workflows/gateway.lock.yml@abc123def456"; + process.env.GITHUB_REPOSITORY = "my-org/app-repo"; + + await main(); + + expect(mockCore.setOutput).toHaveBeenCalledWith("target_ref", "abc123def456"); + }); + + it("should include target_ref in step summary for cross-repo invocations", async () => { + process.env.GITHUB_WORKFLOW_REF = "my-org/platform-repo/.github/workflows/gateway.lock.yml@refs/heads/feature-branch"; + process.env.GITHUB_REPOSITORY = "my-org/app-repo"; + + await main(); + + expect(mockCore.summary.addRaw).toHaveBeenCalledWith(expect.stringContaining("refs/heads/feature-branch")); + expect(mockCore.summary.write).toHaveBeenCalled(); + }); }); diff --git a/pkg/workflow/checkout_manager.go b/pkg/workflow/checkout_manager.go index 04890002d1..15fa735680 100644 --- a/pkg/workflow/checkout_manager.go +++ b/pkg/workflow/checkout_manager.go @@ -138,6 +138,14 @@ type CheckoutManager struct { // In the agent and safe_outputs jobs it is set to "${{ needs.activation.outputs.target_repo }}". // An empty string means the checkout targets the current repository (github.repository). crossRepoTargetRepo string + // crossRepoTargetRef holds the platform (host) ref (branch/tag/SHA) to use when + // performing .github/.agents sparse checkout steps for cross-repo workflow_call + // invocations pinned to a non-default branch. + // + // In the activation job this is set to "${{ steps.resolve-host-repo.outputs.target_ref }}". + // In the agent and safe_outputs jobs it is set to "${{ needs.activation.outputs.target_ref }}". + // An empty string means the checkout uses the repository's default branch. + crossRepoTargetRef string } // NewCheckoutManager creates a new CheckoutManager pre-loaded with user-supplied @@ -160,7 +168,7 @@ func NewCheckoutManager(userCheckouts []*CheckoutConfig) *CheckoutManager { // In the activation job pass "${{ steps.resolve-host-repo.outputs.target_repo }}". // In downstream jobs (agent, safe_outputs) pass "${{ needs.activation.outputs.target_repo }}". func (cm *CheckoutManager) SetCrossRepoTargetRepo(repo string) { - checkoutManagerLog.Printf("Setting cross-repo target: %q", repo) + checkoutManagerLog.Printf("Setting cross-repo target repo: %q", repo) cm.crossRepoTargetRepo = repo } @@ -171,6 +179,23 @@ func (cm *CheckoutManager) GetCrossRepoTargetRepo() string { return cm.crossRepoTargetRepo } +// SetCrossRepoTargetRef stores the platform (host) ref expression used for +// .github/.agents sparse checkout steps. Call this when the workflow has a workflow_call +// trigger and the checkout should target a specific branch rather than the default branch. +// +// In the activation job pass "${{ steps.resolve-host-repo.outputs.target_ref }}". +// In downstream jobs (agent, safe_outputs) pass "${{ needs.activation.outputs.target_ref }}". +func (cm *CheckoutManager) SetCrossRepoTargetRef(ref string) { + checkoutManagerLog.Printf("Setting cross-repo target ref: %q", ref) + cm.crossRepoTargetRef = ref +} + +// GetCrossRepoTargetRef returns the platform ref expression previously set by +// SetCrossRepoTargetRef, or an empty string if no cross-repo ref was set. +func (cm *CheckoutManager) GetCrossRepoTargetRef() string { + return cm.crossRepoTargetRef +} + // add processes a single CheckoutConfig and either creates a new entry or merges // it into an existing entry with the same key. func (cm *CheckoutManager) add(cfg *CheckoutConfig) { @@ -330,14 +355,16 @@ func (cm *CheckoutManager) GenerateAdditionalCheckoutSteps(getActionPin func(str // // Parameters: // - repository: the repository to checkout. May be a literal "owner/repo" value or a -// GitHub Actions expression such as -// "${{ github.event_name == 'workflow_call' && github.action_repository || github.repository }}". +// GitHub Actions expression such as "${{ steps.resolve-host-repo.outputs.target_repo }}". // Pass an empty string to omit the repository field and check out the current repository. +// - ref: the branch, tag, or SHA to checkout. May be a literal value or a GitHub Actions +// expression such as "${{ steps.resolve-host-repo.outputs.target_ref }}". +// Pass an empty string to omit the ref field and use the repository's default branch. // - getActionPin: resolves an action reference to a pinned SHA form. // // Returns a slice of YAML lines (each ending with \n). -func (cm *CheckoutManager) GenerateGitHubFolderCheckoutStep(repository string, getActionPin func(string) string) []string { - checkoutManagerLog.Printf("Generating .github/.agents folder checkout: repository=%q", repository) +func (cm *CheckoutManager) GenerateGitHubFolderCheckoutStep(repository, ref string, getActionPin func(string) string) []string { + checkoutManagerLog.Printf("Generating .github/.agents folder checkout: repository=%q ref=%q", repository, ref) var sb strings.Builder sb.WriteString(" - name: Checkout .github and .agents folders\n") @@ -347,6 +374,9 @@ func (cm *CheckoutManager) GenerateGitHubFolderCheckoutStep(repository string, g if repository != "" { fmt.Fprintf(&sb, " repository: %s\n", repository) } + if ref != "" { + fmt.Fprintf(&sb, " ref: %s\n", ref) + } sb.WriteString(" sparse-checkout: |\n") sb.WriteString(" .github\n") sb.WriteString(" .agents\n") diff --git a/pkg/workflow/checkout_manager_test.go b/pkg/workflow/checkout_manager_test.go index 7963550d98..2eeaa985f0 100644 --- a/pkg/workflow/checkout_manager_test.go +++ b/pkg/workflow/checkout_manager_test.go @@ -934,10 +934,54 @@ func TestCrossRepoTargetRepo(t *testing.T) { cm := NewCheckoutManager(nil) cm.SetCrossRepoTargetRepo("${{ needs.activation.outputs.target_repo }}") - lines := cm.GenerateGitHubFolderCheckoutStep(cm.GetCrossRepoTargetRepo(), GetActionPin) + lines := cm.GenerateGitHubFolderCheckoutStep(cm.GetCrossRepoTargetRepo(), "", GetActionPin) combined := strings.Join(lines, "") assert.Contains(t, combined, "repository: ${{ needs.activation.outputs.target_repo }}", "checkout step should use the cross-repo target") }) } + +// TestCrossRepoTargetRef verifies the SetCrossRepoTargetRef/GetCrossRepoTargetRef lifecycle +// and that GenerateGitHubFolderCheckoutStep emits a ref: field when a ref is provided. +func TestCrossRepoTargetRef(t *testing.T) { + t.Run("default is empty string", func(t *testing.T) { + cm := NewCheckoutManager(nil) + assert.Empty(t, cm.GetCrossRepoTargetRef(), "new checkout manager should have no cross-repo ref") + }) + + t.Run("activation job ref expression is stored and retrievable", func(t *testing.T) { + cm := NewCheckoutManager(nil) + cm.SetCrossRepoTargetRef("${{ steps.resolve-host-repo.outputs.target_ref }}") + assert.Equal(t, "${{ steps.resolve-host-repo.outputs.target_ref }}", cm.GetCrossRepoTargetRef()) + }) + + t.Run("downstream job ref expression (needs.activation.outputs) is stored and retrievable", func(t *testing.T) { + cm := NewCheckoutManager(nil) + cm.SetCrossRepoTargetRef("${{ needs.activation.outputs.target_ref }}") + assert.Equal(t, "${{ needs.activation.outputs.target_ref }}", cm.GetCrossRepoTargetRef()) + }) + + t.Run("GenerateGitHubFolderCheckoutStep emits ref: when ref is provided", func(t *testing.T) { + cm := NewCheckoutManager(nil) + cm.SetCrossRepoTargetRepo("${{ steps.resolve-host-repo.outputs.target_repo }}") + cm.SetCrossRepoTargetRef("${{ steps.resolve-host-repo.outputs.target_ref }}") + + lines := cm.GenerateGitHubFolderCheckoutStep(cm.GetCrossRepoTargetRepo(), cm.GetCrossRepoTargetRef(), GetActionPin) + combined := strings.Join(lines, "") + + assert.Contains(t, combined, "repository: ${{ steps.resolve-host-repo.outputs.target_repo }}", + "checkout step should include repository field") + assert.Contains(t, combined, "ref: ${{ steps.resolve-host-repo.outputs.target_ref }}", + "checkout step should include ref field") + }) + + t.Run("GenerateGitHubFolderCheckoutStep omits ref: when ref is empty", func(t *testing.T) { + cm := NewCheckoutManager(nil) + + lines := cm.GenerateGitHubFolderCheckoutStep("org/repo", "", GetActionPin) + combined := strings.Join(lines, "") + + assert.NotContains(t, combined, "ref:", "checkout step should not include ref field when empty") + }) +} diff --git a/pkg/workflow/compiler_activation_job.go b/pkg/workflow/compiler_activation_job.go index 62518a376b..a016e5bdf9 100644 --- a/pkg/workflow/compiler_activation_job.go +++ b/pkg/workflow/compiler_activation_job.go @@ -69,11 +69,13 @@ func (c *Compiler) buildActivationJob(data *WorkflowData, preActivationJobCreate // Expose the model output from the activation job so downstream jobs can reference it outputs["model"] = "${{ steps.generate_aw_info.outputs.model }}" - // Expose the resolved platform (host) repository so agent and safe_outputs jobs can use - // needs.activation.outputs.target_repo for any checkout that must target the platform repo - // rather than github.repository (the caller's repo in cross-repo workflow_call scenarios). + // Expose the resolved platform (host) repository and ref so agent and safe_outputs jobs + // can use needs.activation.outputs.target_repo / target_ref for any checkout that must + // target the platform repo and branch rather than github.repository (the caller's repo in + // cross-repo workflow_call scenarios, especially when pinned to a non-default branch). if hasWorkflowCallTrigger(data.On) && !data.InlinedImports { outputs["target_repo"] = "${{ steps.resolve-host-repo.outputs.target_repo }}" + outputs["target_ref"] = "${{ steps.resolve-host-repo.outputs.target_ref }}" } // Add secret validation step before context variable validation. @@ -531,8 +533,10 @@ func (c *Compiler) generateCheckoutGitHubFolderForActivation(data *WorkflowData) if data != nil && hasWorkflowCallTrigger(data.On) && !data.InlinedImports { compilerActivationJobLog.Print("Adding cross-repo-aware .github checkout for workflow_call trigger") cm.SetCrossRepoTargetRepo("${{ steps.resolve-host-repo.outputs.target_repo }}") + cm.SetCrossRepoTargetRef("${{ steps.resolve-host-repo.outputs.target_ref }}") return cm.GenerateGitHubFolderCheckoutStep( cm.GetCrossRepoTargetRepo(), + cm.GetCrossRepoTargetRef(), GetActionPin, ) } @@ -541,5 +545,5 @@ func (c *Compiler) generateCheckoutGitHubFolderForActivation(data *WorkflowData) // This is needed for runtime imports during prompt generation // sparse-checkout-cone-mode: true ensures subdirectories under .github/ are recursively included compilerActivationJobLog.Print("Adding .github and .agents sparse checkout in activation job") - return cm.GenerateGitHubFolderCheckoutStep("", GetActionPin) + return cm.GenerateGitHubFolderCheckoutStep("", "", GetActionPin) } diff --git a/pkg/workflow/compiler_activation_job_test.go b/pkg/workflow/compiler_activation_job_test.go index 4da5a73799..96e21f35f2 100644 --- a/pkg/workflow/compiler_activation_job_test.go +++ b/pkg/workflow/compiler_activation_job_test.go @@ -17,6 +17,10 @@ import ( // relays and event-driven relays (e.g. on: issue_comment) where event_name != 'workflow_call'. const workflowCallRepo = "${{ steps.resolve-host-repo.outputs.target_repo }}" +// workflowCallRef is the expression injected into the ref: field of the activation-job +// checkout step when a workflow_call trigger is detected without inlined imports. +const workflowCallRef = "${{ steps.resolve-host-repo.outputs.target_ref }}" + func TestGenerateCheckoutGitHubFolderForActivation_WorkflowCall(t *testing.T) { tests := []struct { name string @@ -24,16 +28,18 @@ func TestGenerateCheckoutGitHubFolderForActivation_WorkflowCall(t *testing.T) { features map[string]any inlinedImports bool // whether InlinedImports is enabled in WorkflowData wantRepository string // expected repository: value ("" means field absent) + wantRef string // expected ref: value ("" means field absent) wantNil bool // whether nil is expected (action-tag skip) wantGitHubSparse bool // whether .github / .agents should be in sparse-checkout wantPersistFalse bool // whether persist-credentials: false should be present wantFetchDepth1 bool // whether fetch-depth: 1 should be present }{ { - name: "workflow_call trigger - cross-repo checkout with conditional repository", + name: "workflow_call trigger - cross-repo checkout with conditional repository and ref", onSection: `"on": workflow_call:`, wantRepository: workflowCallRepo, + wantRef: workflowCallRef, wantGitHubSparse: true, wantPersistFalse: true, wantFetchDepth1: true, @@ -49,6 +55,7 @@ func TestGenerateCheckoutGitHubFolderForActivation_WorkflowCall(t *testing.T) { required: true type: number`, wantRepository: workflowCallRepo, + wantRef: workflowCallRef, wantGitHubSparse: true, wantPersistFalse: true, wantFetchDepth1: true, @@ -59,6 +66,7 @@ func TestGenerateCheckoutGitHubFolderForActivation_WorkflowCall(t *testing.T) { workflow_call:`, inlinedImports: true, wantRepository: "", + wantRef: "", wantGitHubSparse: true, wantPersistFalse: true, wantFetchDepth1: true, @@ -69,6 +77,7 @@ func TestGenerateCheckoutGitHubFolderForActivation_WorkflowCall(t *testing.T) { issues: types: [opened]`, wantRepository: "", + wantRef: "", wantGitHubSparse: true, wantPersistFalse: true, wantFetchDepth1: true, @@ -79,6 +88,7 @@ func TestGenerateCheckoutGitHubFolderForActivation_WorkflowCall(t *testing.T) { issue_comment: types: [created]`, wantRepository: "", + wantRef: "", wantGitHubSparse: true, wantPersistFalse: true, wantFetchDepth1: true, @@ -145,6 +155,15 @@ func TestGenerateCheckoutGitHubFolderForActivation_WorkflowCall(t *testing.T) { assert.NotContains(t, combined, "repository:", "standard checkout should not include repository field") } + + // Verify ref field + if tt.wantRef != "" { + assert.Contains(t, combined, "ref: "+tt.wantRef, + "cross-repo checkout should include ref expression to preserve callee branch") + } else { + assert.NotContains(t, combined, "ref:", + "standard checkout should not include ref field") + } }) } } @@ -177,7 +196,7 @@ func TestGenerateGitHubFolderCheckoutStep(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - result := NewCheckoutManager(nil).GenerateGitHubFolderCheckoutStep(tt.repository, GetActionPin) + result := NewCheckoutManager(nil).GenerateGitHubFolderCheckoutStep(tt.repository, "", GetActionPin) require.NotEmpty(t, result, "should return at least one YAML line") @@ -324,3 +343,138 @@ func TestActivationJobTargetRepoOutput(t *testing.T) { }) } } + +// TestActivationJobTargetRefOutput verifies that the activation job exposes target_ref as an +// output when a workflow_call trigger is present (without inlined imports), alongside target_repo. +// This enables callee-branch-pinned relays to check out the correct branch. +func TestActivationJobTargetRefOutput(t *testing.T) { + tests := []struct { + name string + onSection string + inlinedImports bool + expectTargetRef bool + }{ + { + name: "workflow_call trigger - target_ref output added", + onSection: `"on": + workflow_call:`, + expectTargetRef: true, + }, + { + name: "mixed triggers with workflow_call - target_ref output added", + onSection: `"on": + issue_comment: + types: [created] + workflow_call:`, + expectTargetRef: true, + }, + { + name: "workflow_call with inlined-imports - no target_ref output", + onSection: `"on": + workflow_call:`, + inlinedImports: true, + expectTargetRef: false, + }, + { + name: "no workflow_call - no target_ref output", + onSection: `"on": + issues: + types: [opened]`, + expectTargetRef: false, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + compiler := NewCompilerWithVersion("dev") + compiler.SetActionMode(ActionModeDev) + + data := &WorkflowData{ + Name: "test-workflow", + On: tt.onSection, + InlinedImports: tt.inlinedImports, + AI: "copilot", + } + + job, err := compiler.buildActivationJob(data, false, "", "test.lock.yml") + require.NoError(t, err, "buildActivationJob should succeed") + require.NotNil(t, job, "activation job should not be nil") + + if tt.expectTargetRef { + assert.Contains(t, job.Outputs, "target_ref", + "activation job should expose target_ref output for downstream jobs") + assert.Equal(t, + "${{ steps.resolve-host-repo.outputs.target_ref }}", + job.Outputs["target_ref"], + "target_ref output should reference resolve-host-repo step") + } else { + assert.NotContains(t, job.Outputs, "target_ref", + "activation job should not expose target_ref when workflow_call is absent or inlined-imports enabled") + } + }) + } +} + +// TestCheckoutGitHubFolderIncludesRef verifies that the activation checkout emits a ref: field +// when a workflow_call trigger is present. This ensures caller-hosted relays pinned to a +// feature branch check out the correct platform branch during activation. +func TestCheckoutGitHubFolderIncludesRef(t *testing.T) { + tests := []struct { + name string + onSection string + inlinedImports bool + wantRef bool + }{ + { + name: "workflow_call trigger - ref field emitted", + onSection: `"on": + workflow_call:`, + wantRef: true, + }, + { + name: "mixed triggers with workflow_call - ref field emitted", + onSection: `"on": + issue_comment: + types: [created] + workflow_call:`, + wantRef: true, + }, + { + name: "workflow_call with inlined-imports - no ref field", + onSection: `"on": + workflow_call:`, + inlinedImports: true, + wantRef: false, + }, + { + name: "no workflow_call - no ref field", + onSection: `"on": + issues: + types: [opened]`, + wantRef: false, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + c := NewCompilerWithVersion("dev") + c.SetActionMode(ActionModeDev) + + data := &WorkflowData{ + On: tt.onSection, + InlinedImports: tt.inlinedImports, + } + + result := c.generateCheckoutGitHubFolderForActivation(data) + combined := strings.Join(result, "") + + if tt.wantRef { + assert.Contains(t, combined, "ref: "+workflowCallRef, + "cross-repo checkout should include ref: expression") + } else { + assert.NotContains(t, combined, "ref:", + "non-cross-repo checkout should not include ref: field") + } + }) + } +} From 1390050663867879b8c42b7e92cfb60e3dea718d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Mar 2026 19:31:39 +0000 Subject: [PATCH 3/5] fix: add repository and ref to Checkout actions folder step (#20658) In dev and script modes, the Checkout actions folder step was emitted without repository: or ref:. In cross-repo relay scenarios this caused actions/checkout to default to the caller's repo which has no actions/ directory, making Setup Scripts fail immediately. - Add versionToGitRef() helper to extract a clean git ref from git-describe version strings (strips -dirty, extracts SHA from v1.2.3-N-gSHA format) - Add repository: github/gh-aw to dev mode Checkout actions folder step - Add ref: to both dev and script mode checkout steps - Update maintenance_workflow.go with the same fix - Recompile all lock files to pick up the new fields Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/ace-editor.lock.yml | 6 + .../agent-performance-analyzer.lock.yml | 12 ++ .../workflows/agent-persona-explorer.lock.yml | 12 ++ .github/workflows/agentics-maintenance.yml | 2 + .github/workflows/ai-moderator.lock.yml | 12 ++ .github/workflows/archie.lock.yml | 10 ++ .github/workflows/artifacts-summary.lock.yml | 8 ++ .github/workflows/audit-workflows.lock.yml | 14 +++ .github/workflows/auto-triage-issues.lock.yml | 10 ++ .github/workflows/blog-auditor.lock.yml | 8 ++ .github/workflows/bot-detection.lock.yml | 8 ++ .github/workflows/brave.lock.yml | 10 ++ .../breaking-change-checker.lock.yml | 10 ++ .github/workflows/changeset.lock.yml | 10 ++ .../workflows/chroma-issue-indexer.lock.yml | 4 + .github/workflows/ci-coach.lock.yml | 10 ++ .github/workflows/ci-doctor.lock.yml | 12 ++ .../claude-code-user-docs-review.lock.yml | 10 ++ .../cli-consistency-checker.lock.yml | 8 ++ .../workflows/cli-version-checker.lock.yml | 10 ++ .github/workflows/cloclo.lock.yml | 12 ++ .../workflows/code-scanning-fixer.lock.yml | 14 +++ .github/workflows/code-simplifier.lock.yml | 10 ++ .../codex-github-remote-mcp-test.lock.yml | 4 + .../commit-changes-analyzer.lock.yml | 8 ++ .../constraint-solving-potd.lock.yml | 10 ++ .github/workflows/contribution-check.lock.yml | 8 ++ .../workflows/copilot-agent-analysis.lock.yml | 12 ++ .../copilot-cli-deep-research.lock.yml | 10 ++ .../copilot-pr-merged-report.lock.yml | 10 ++ .../copilot-pr-nlp-analysis.lock.yml | 14 +++ .../copilot-pr-prompt-analysis.lock.yml | 12 ++ .../copilot-session-insights.lock.yml | 14 +++ .github/workflows/craft.lock.yml | 10 ++ .../daily-architecture-diagram.lock.yml | 10 ++ .../daily-assign-issue-to-user.lock.yml | 8 ++ .github/workflows/daily-choice-test.lock.yml | 8 ++ .../workflows/daily-cli-performance.lock.yml | 10 ++ .../workflows/daily-cli-tools-tester.lock.yml | 8 ++ .github/workflows/daily-code-metrics.lock.yml | 14 +++ .../workflows/daily-compiler-quality.lock.yml | 10 ++ .../daily-copilot-token-report.lock.yml | 14 +++ .github/workflows/daily-doc-healer.lock.yml | 10 ++ .github/workflows/daily-doc-updater.lock.yml | 10 ++ .github/workflows/daily-file-diet.lock.yml | 10 ++ .../workflows/daily-firewall-report.lock.yml | 12 ++ .../workflows/daily-issues-report.lock.yml | 14 +++ .../daily-malicious-code-scan.lock.yml | 8 ++ .../daily-mcp-concurrency-analysis.lock.yml | 10 ++ .../daily-multi-device-docs-tester.lock.yml | 10 ++ .github/workflows/daily-news.lock.yml | 14 +++ .../daily-observability-report.lock.yml | 10 ++ .../daily-performance-summary.lock.yml | 12 ++ .github/workflows/daily-regulatory.lock.yml | 8 ++ .../daily-rendering-scripts-verifier.lock.yml | 12 ++ .../workflows/daily-repo-chronicle.lock.yml | 12 ++ .../daily-safe-output-optimizer.lock.yml | 12 ++ .../daily-safe-outputs-conformance.lock.yml | 8 ++ .../workflows/daily-secrets-analysis.lock.yml | 8 ++ .../daily-security-red-team.lock.yml | 8 ++ .github/workflows/daily-semgrep-scan.lock.yml | 8 ++ .../daily-syntax-error-quality.lock.yml | 8 ++ .../daily-team-evolution-insights.lock.yml | 8 ++ .github/workflows/daily-team-status.lock.yml | 10 ++ .../daily-testify-uber-super-expert.lock.yml | 12 ++ .../workflows/daily-workflow-updater.lock.yml | 8 ++ .github/workflows/dead-code-remover.lock.yml | 12 ++ .github/workflows/deep-report.lock.yml | 14 +++ .github/workflows/delight.lock.yml | 10 ++ .github/workflows/dependabot-burner.lock.yml | 10 ++ .../workflows/dependabot-go-checker.lock.yml | 8 ++ .github/workflows/dev-hawk.lock.yml | 10 ++ .github/workflows/dev.lock.yml | 8 ++ .../developer-docs-consolidator.lock.yml | 12 ++ .github/workflows/dictation-prompt.lock.yml | 8 ++ .../workflows/discussion-task-miner.lock.yml | 10 ++ .github/workflows/docs-noob-tester.lock.yml | 10 ++ .github/workflows/draft-pr-cleanup.lock.yml | 8 ++ .../duplicate-code-detector.lock.yml | 8 ++ .../example-permissions-warning.lock.yml | 4 + .../example-workflow-analyzer.lock.yml | 8 ++ .github/workflows/firewall-escape.lock.yml | 14 +++ .github/workflows/firewall.lock.yml | 4 + .../workflows/functional-pragmatist.lock.yml | 8 ++ .../github-mcp-structural-analysis.lock.yml | 12 ++ .../github-mcp-tools-report.lock.yml | 10 ++ .../github-remote-mcp-auth-test.lock.yml | 8 ++ .../workflows/glossary-maintainer.lock.yml | 12 ++ .github/workflows/go-fan.lock.yml | 10 ++ .github/workflows/go-logger.lock.yml | 10 ++ .../workflows/go-pattern-detector.lock.yml | 8 ++ .github/workflows/gpclean.lock.yml | 10 ++ .github/workflows/grumpy-reviewer.lock.yml | 12 ++ .github/workflows/hourly-ci-cleaner.lock.yml | 8 ++ .../workflows/instructions-janitor.lock.yml | 10 ++ .github/workflows/issue-arborist.lock.yml | 8 ++ .github/workflows/issue-monster.lock.yml | 10 ++ .github/workflows/issue-triage-agent.lock.yml | 8 ++ .github/workflows/jsweep.lock.yml | 10 ++ .../workflows/layout-spec-maintainer.lock.yml | 8 ++ .github/workflows/lockfile-stats.lock.yml | 10 ++ .github/workflows/mcp-inspector.lock.yml | 10 ++ .github/workflows/mergefest.lock.yml | 10 ++ .github/workflows/metrics-collector.lock.yml | 8 ++ .../workflows/notion-issue-summary.lock.yml | 8 ++ .github/workflows/org-health-report.lock.yml | 12 ++ .github/workflows/pdf-summary.lock.yml | 12 ++ .github/workflows/plan.lock.yml | 10 ++ .github/workflows/poem-bot.lock.yml | 14 +++ .github/workflows/portfolio-analyst.lock.yml | 12 ++ .../workflows/pr-nitpick-reviewer.lock.yml | 12 ++ .github/workflows/pr-triage-agent.lock.yml | 10 ++ .../prompt-clustering-analysis.lock.yml | 10 ++ .github/workflows/python-data-charts.lock.yml | 12 ++ .github/workflows/q.lock.yml | 12 ++ .github/workflows/refiner.lock.yml | 10 ++ .github/workflows/release.lock.yml | 10 ++ .../workflows/repo-audit-analyzer.lock.yml | 10 ++ .github/workflows/repo-tree-map.lock.yml | 8 ++ .../repository-quality-improver.lock.yml | 10 ++ .github/workflows/research.lock.yml | 8 ++ .github/workflows/safe-output-health.lock.yml | 10 ++ .../schema-consistency-checker.lock.yml | 10 ++ .github/workflows/scout.lock.yml | 12 ++ ...ecurity-alert-burndown.campaign.g.lock.yml | 10 ++ .../workflows/security-compliance.lock.yml | 10 ++ .github/workflows/security-review.lock.yml | 12 ++ .../semantic-function-refactor.lock.yml | 8 ++ .github/workflows/sergo.lock.yml | 10 ++ .../workflows/slide-deck-maintainer.lock.yml | 12 ++ .github/workflows/smoke-agent.lock.yml | 10 ++ .github/workflows/smoke-claude.lock.yml | 12 ++ .github/workflows/smoke-codex.lock.yml | 12 ++ .github/workflows/smoke-copilot-arm.lock.yml | 12 ++ .github/workflows/smoke-copilot.lock.yml | 12 ++ .../smoke-create-cross-repo-pr.lock.yml | 10 ++ .github/workflows/smoke-gemini.lock.yml | 12 ++ .github/workflows/smoke-multi-pr.lock.yml | 10 ++ .github/workflows/smoke-project.lock.yml | 10 ++ .github/workflows/smoke-temporary-id.lock.yml | 10 ++ .github/workflows/smoke-test-tools.lock.yml | 10 ++ .../smoke-update-cross-repo-pr.lock.yml | 12 ++ .../smoke-workflow-call-with-inputs.lock.yml | 10 ++ .../workflows/smoke-workflow-call.lock.yml | 10 ++ .../workflows/stale-repo-identifier.lock.yml | 12 ++ .../workflows/static-analysis-report.lock.yml | 10 ++ .../workflows/step-name-alignment.lock.yml | 10 ++ .github/workflows/sub-issue-closer.lock.yml | 8 ++ .github/workflows/super-linter.lock.yml | 10 ++ .../workflows/technical-doc-writer.lock.yml | 14 +++ .github/workflows/terminal-stylist.lock.yml | 8 ++ .../test-create-pr-error-handling.lock.yml | 10 ++ .github/workflows/test-dispatcher.lock.yml | 8 ++ .../test-project-url-default.lock.yml | 8 ++ .github/workflows/test-workflow.lock.yml | 4 + .github/workflows/tidy.lock.yml | 10 ++ .github/workflows/typist.lock.yml | 8 ++ .../workflows/ubuntu-image-analyzer.lock.yml | 10 ++ .github/workflows/unbloat-docs.lock.yml | 14 +++ .github/workflows/video-analyzer.lock.yml | 8 ++ .../weekly-editors-health-check.lock.yml | 10 ++ .../workflows/weekly-issue-summary.lock.yml | 12 ++ .../weekly-safe-outputs-spec-review.lock.yml | 8 ++ .github/workflows/workflow-generator.lock.yml | 12 ++ .../workflow-health-manager.lock.yml | 12 ++ .../workflows/workflow-normalizer.lock.yml | 8 ++ .../workflow-skill-extractor.lock.yml | 8 ++ pkg/workflow/compiler_custom_actions_test.go | 108 ++++++++++++++++++ pkg/workflow/compiler_yaml_helpers.go | 59 +++++++++- pkg/workflow/maintenance_workflow.go | 25 ++-- 170 files changed, 1841 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ace-editor.lock.yml b/.github/workflows/ace-editor.lock.yml index 2f451646a6..aaa5ba8286 100644 --- a/.github/workflows/ace-editor.lock.yml +++ b/.github/workflows/ace-editor.lock.yml @@ -64,6 +64,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -280,6 +282,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -558,6 +562,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index 3302321c8f..4fa7f294b0 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -284,6 +286,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1219,6 +1223,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1322,6 +1328,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1359,6 +1367,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1443,6 +1453,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index eb51532487..36ee1d5fe1 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1060,6 +1064,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1160,6 +1166,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1205,6 +1213,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1261,6 +1271,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agentics-maintenance.yml b/.github/workflows/agentics-maintenance.yml index 211c2d107f..ba501ee5fe 100644 --- a/.github/workflows/agentics-maintenance.yml +++ b/.github/workflows/agentics-maintenance.yml @@ -64,6 +64,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index 0eef6dd288..17f4c680e2 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -77,6 +77,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -321,6 +323,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -963,6 +967,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1061,6 +1067,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1138,6 +1146,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1196,6 +1206,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index 9e66540831..046855a731 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -81,6 +81,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -331,6 +333,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1031,6 +1035,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1135,6 +1141,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1195,6 +1203,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index a9e2a96204..91d851dbe3 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -268,6 +270,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -963,6 +967,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1076,6 +1082,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index 7b37c7fa7c..46949af7f6 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -301,6 +303,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1250,6 +1254,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1363,6 +1369,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1443,6 +1451,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1499,6 +1509,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1543,6 +1555,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index 9389694db8..963fe8c695 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -65,6 +65,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -281,6 +283,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1041,6 +1045,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1141,6 +1147,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1202,6 +1210,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index d303195df4..302f0ab251 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -275,6 +277,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1084,6 +1088,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1202,6 +1208,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index 9ce2dc4d5f..dfd5b84ed0 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -54,6 +54,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -999,6 +1003,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1910,6 +1916,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/brave.lock.yml b/.github/workflows/brave.lock.yml index 6f8d69e7cc..b4aef4d1dd 100644 --- a/.github/workflows/brave.lock.yml +++ b/.github/workflows/brave.lock.yml @@ -67,6 +67,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -315,6 +317,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1019,6 +1023,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1120,6 +1126,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1180,6 +1188,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index a3901e00a6..9ef58775cb 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -270,6 +272,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1006,6 +1010,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1108,6 +1114,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1169,6 +1177,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index 834c14eedf..98634b2103 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -75,6 +75,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -328,6 +330,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1064,6 +1068,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1167,6 +1173,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1216,6 +1224,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/chroma-issue-indexer.lock.yml b/.github/workflows/chroma-issue-indexer.lock.yml index 088a208a78..8be5da8bdc 100644 --- a/.github/workflows/chroma-issue-indexer.lock.yml +++ b/.github/workflows/chroma-issue-indexer.lock.yml @@ -55,6 +55,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -255,6 +257,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index 23e9d2c5e0..b76595fdcc 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -291,6 +293,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1068,6 +1072,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1205,6 +1211,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1290,6 +1298,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index b187de95cd..73e557a79e 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -67,6 +67,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -311,6 +313,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1233,6 +1237,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1341,6 +1347,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1407,6 +1415,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1463,6 +1473,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 4b26382051..3872e95617 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -280,6 +282,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1052,6 +1056,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1170,6 +1176,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1226,6 +1234,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index c68c8876c0..4cc52a3231 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -51,6 +51,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -259,6 +261,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -975,6 +979,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1087,6 +1093,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index 73e0879e27..bfb8e48d1d 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -281,6 +283,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1078,6 +1082,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1190,6 +1196,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1246,6 +1254,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index 6f33db99a9..9afd475b19 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -105,6 +105,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -387,6 +389,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1389,6 +1393,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1519,6 +1525,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1583,6 +1591,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1668,6 +1678,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index d69fe399a6..ba8c98b8c0 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -52,6 +52,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -272,6 +274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1094,6 +1098,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1211,6 +1217,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1261,6 +1269,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1344,6 +1354,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1429,6 +1441,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index 07e9f11da4..f01e952cb4 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -279,6 +281,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -999,6 +1003,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1118,6 +1124,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1181,6 +1189,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index f60eab1fff..6161f1ed91 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -50,6 +50,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -239,6 +241,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index ce274c751b..7118ded703 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -274,6 +276,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1026,6 +1030,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1139,6 +1145,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/constraint-solving-potd.lock.yml b/.github/workflows/constraint-solving-potd.lock.yml index 1065359526..9e321b44cd 100644 --- a/.github/workflows/constraint-solving-potd.lock.yml +++ b/.github/workflows/constraint-solving-potd.lock.yml @@ -52,6 +52,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -266,6 +268,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -964,6 +968,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1077,6 +1083,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1133,6 +1141,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index 02f86aa1ab..0d437dfcc3 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -55,6 +55,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -269,6 +271,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1077,6 +1081,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1194,6 +1200,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index d50c3ed07d..949b52bfde 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -303,6 +305,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1118,6 +1122,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1227,6 +1233,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1306,6 +1314,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1362,6 +1372,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index cbc6148404..daa91d215b 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -283,6 +285,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1035,6 +1039,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1144,6 +1150,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1223,6 +1231,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index f3e2bad7cb..bfdd0e5a7c 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -289,6 +291,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1133,6 +1137,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1246,6 +1252,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1302,6 +1310,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index 7d2ffc9dc9..992badceff 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -305,6 +307,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1139,6 +1143,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1248,6 +1254,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1327,6 +1335,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1383,6 +1393,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1427,6 +1439,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index af8e6baa87..524f5a56fd 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -300,6 +302,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1055,6 +1059,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1164,6 +1170,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1243,6 +1251,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1299,6 +1309,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index e5c0eaa5a8..695e099ec2 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -62,6 +62,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -318,6 +320,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1205,6 +1209,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1314,6 +1320,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1393,6 +1401,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1449,6 +1459,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1493,6 +1505,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index 32880b4fa1..fb23de59f9 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -64,6 +64,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -308,6 +310,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1062,6 +1066,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1164,6 +1170,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1228,6 +1236,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-architecture-diagram.lock.yml b/.github/workflows/daily-architecture-diagram.lock.yml index 0e0871bc81..383e23ded4 100644 --- a/.github/workflows/daily-architecture-diagram.lock.yml +++ b/.github/workflows/daily-architecture-diagram.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -274,6 +276,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1094,6 +1098,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1227,6 +1233,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1312,6 +1320,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 8ca53d7e08..697b3b47a6 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -51,6 +51,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -256,6 +258,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1008,6 +1012,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1123,6 +1129,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index 6885f47f28..06c10d9b2b 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -52,6 +52,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -260,6 +262,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -980,6 +984,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1093,6 +1099,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index 15956bf23e..3bf6914cc5 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -288,6 +290,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1240,6 +1244,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1351,6 +1357,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1436,6 +1444,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index d36265bad8..ab45d04514 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -272,6 +274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1054,6 +1058,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1167,6 +1173,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index 1a6ead34f3..150e1fbf7b 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -299,6 +301,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1179,6 +1183,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1292,6 +1298,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1372,6 +1380,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1428,6 +1438,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1472,6 +1484,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index fbcadd54a9..8a02f69a6f 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -277,6 +279,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1018,6 +1022,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1136,6 +1142,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1192,6 +1200,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-copilot-token-report.lock.yml b/.github/workflows/daily-copilot-token-report.lock.yml index 4d533e0644..c85f901b36 100644 --- a/.github/workflows/daily-copilot-token-report.lock.yml +++ b/.github/workflows/daily-copilot-token-report.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -293,6 +295,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1147,6 +1151,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1260,6 +1266,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1340,6 +1348,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1396,6 +1406,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1440,6 +1452,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-doc-healer.lock.yml b/.github/workflows/daily-doc-healer.lock.yml index 8c97eabf93..e57b756019 100644 --- a/.github/workflows/daily-doc-healer.lock.yml +++ b/.github/workflows/daily-doc-healer.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -279,6 +281,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1184,6 +1188,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1323,6 +1329,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1421,6 +1429,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index 105b319375..93b9402f0c 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -272,6 +274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1096,6 +1100,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1233,6 +1239,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1318,6 +1326,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index a41373de2b..2750293c3a 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -278,6 +280,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1024,6 +1028,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1125,6 +1131,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1185,6 +1193,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index b62ed4c8ae..53af74d7dc 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -285,6 +287,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1136,6 +1140,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1255,6 +1261,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1311,6 +1319,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1355,6 +1365,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index 633538ae11..774306cb0b 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -63,6 +63,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -305,6 +307,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1140,6 +1144,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1243,6 +1249,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1289,6 +1297,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1345,6 +1355,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1389,6 +1401,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index 7541e55859..548bd8b6dc 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -263,6 +265,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -873,6 +877,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -988,6 +994,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index acdc9c5cfc..3a041609af 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -276,6 +278,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1079,6 +1083,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1198,6 +1204,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1266,6 +1274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index 878460d52a..037ec165f9 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -63,6 +63,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -288,6 +290,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1171,6 +1175,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1288,6 +1294,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1346,6 +1354,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index 51f4a9e1e0..eba332b080 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -304,6 +306,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1208,6 +1212,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1321,6 +1327,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1401,6 +1409,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1457,6 +1467,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1501,6 +1513,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index 418a2034fc..8a912efb11 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -277,6 +279,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1097,6 +1101,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1200,6 +1206,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1246,6 +1254,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index 03751566e4..bad6a49ff2 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -290,6 +292,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1620,6 +1624,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1739,6 +1745,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1795,6 +1803,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1839,6 +1849,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index b939490f36..1aa23ca458 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -277,6 +279,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1517,6 +1521,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1636,6 +1642,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-rendering-scripts-verifier.lock.yml b/.github/workflows/daily-rendering-scripts-verifier.lock.yml index 37ff1c51d2..845206f9d7 100644 --- a/.github/workflows/daily-rendering-scripts-verifier.lock.yml +++ b/.github/workflows/daily-rendering-scripts-verifier.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -286,6 +288,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1180,6 +1184,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1298,6 +1304,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1361,6 +1369,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1446,6 +1456,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index f013dead81..d8ba741c45 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1067,6 +1071,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1185,6 +1191,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1241,6 +1249,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1285,6 +1295,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index a2db48f5f6..1022718486 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -61,6 +61,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -286,6 +288,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1167,6 +1171,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1264,6 +1270,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1323,6 +1331,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1379,6 +1389,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index 1ee77d74ec..321a2c5c75 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -269,6 +271,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1041,6 +1045,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1158,6 +1164,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index 8f0df50f89..606cf01239 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -267,6 +269,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1031,6 +1035,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1149,6 +1155,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index 011ceb70d2..d30ad4e414 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -273,6 +275,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1045,6 +1049,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1162,6 +1168,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 6349513778..08838b78aa 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -270,6 +272,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1017,6 +1021,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1128,6 +1134,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index d1bf210730..020e2e5087 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -266,6 +268,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1004,6 +1008,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1121,6 +1127,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index 104959684f..9b63beecdb 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -272,6 +274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1023,6 +1027,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1141,6 +1147,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index 5d5ce321a7..daa05b960f 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -66,6 +66,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -280,6 +282,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -995,6 +999,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1105,6 +1111,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1154,6 +1162,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index 93022cc2c2..1307adf682 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -61,6 +61,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -293,6 +295,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1073,6 +1077,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1178,6 +1184,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1228,6 +1236,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1309,6 +1319,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index 2a00124ea3..eedd8326b3 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -52,6 +52,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -260,6 +262,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -981,6 +985,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1118,6 +1124,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dead-code-remover.lock.yml b/.github/workflows/dead-code-remover.lock.yml index 8a28615758..483e1536d6 100644 --- a/.github/workflows/dead-code-remover.lock.yml +++ b/.github/workflows/dead-code-remover.lock.yml @@ -55,6 +55,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -278,6 +280,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1027,6 +1031,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1140,6 +1146,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1202,6 +1210,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1287,6 +1297,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 21040a08ea..01666aa400 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -302,6 +304,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1245,6 +1249,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1358,6 +1364,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1440,6 +1448,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1496,6 +1506,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1540,6 +1552,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index 9b88a78ab6..c6dc43f71a 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -285,6 +287,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1123,6 +1127,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1237,6 +1243,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1320,6 +1328,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index e116f0f017..d0381904be 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -272,6 +274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -987,6 +991,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1085,6 +1091,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1131,6 +1139,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index afa669675d..cec186a1c3 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -271,6 +273,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1036,6 +1040,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1149,6 +1155,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index f5ae4eee9e..d3f1cc8c37 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -62,6 +62,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -294,6 +296,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1068,6 +1072,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1167,6 +1173,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1216,6 +1224,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index 50727c9375..8353d18562 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -51,6 +51,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -256,6 +258,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -972,6 +976,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1084,6 +1090,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index 04fc3b7b63..6d6b81d026 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -298,6 +300,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1233,6 +1237,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1358,6 +1364,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1442,6 +1450,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1527,6 +1537,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index 4a353ffa8f..2a54b81971 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -55,6 +55,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -266,6 +268,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -987,6 +991,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1118,6 +1124,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/discussion-task-miner.lock.yml b/.github/workflows/discussion-task-miner.lock.yml index ab61b5746c..cd73e3e5c1 100644 --- a/.github/workflows/discussion-task-miner.lock.yml +++ b/.github/workflows/discussion-task-miner.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -286,6 +288,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1107,6 +1111,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1219,6 +1225,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1305,6 +1313,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index b90ee4e32c..6b39e2bfdd 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -273,6 +275,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1026,6 +1030,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1139,6 +1145,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1197,6 +1205,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index 64520d2147..62bcee5e44 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -52,6 +52,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -258,6 +260,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1045,6 +1049,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1161,6 +1167,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index a816d48d2b..e1994fac59 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -280,6 +282,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1013,6 +1017,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1125,6 +1131,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index 9dbf01455d..36a6c94c7a 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -50,6 +50,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -239,6 +241,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index 0bcf6b4cef..bab9e5ae6f 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -269,6 +271,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1086,6 +1090,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1199,6 +1205,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index 0ff37f2b33..82b51b1994 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -65,6 +65,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -303,6 +305,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1050,6 +1054,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1189,6 +1195,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1226,6 +1234,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1305,6 +1315,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1361,6 +1373,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index 4128f20ac0..a1abe163ab 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -50,6 +50,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -241,6 +243,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index c0b9c44b7a..fba55a4a8c 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -273,6 +275,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -993,6 +997,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1131,6 +1137,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index 3770f15a83..4aaaecb5eb 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -285,6 +287,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1130,6 +1134,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1243,6 +1249,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1299,6 +1307,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1343,6 +1353,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index 1a882bf99b..6ad3315eb4 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1142,6 +1146,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1276,6 +1282,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1361,6 +1369,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index ff49b7cf0b..ab3607ef59 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -268,6 +270,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -971,6 +975,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1086,6 +1092,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index aa2bedfa28..9d7d001392 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -301,6 +303,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1120,6 +1124,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1244,6 +1250,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1327,6 +1335,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1412,6 +1422,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index 648129dc65..8e1e4a849d 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1088,6 +1092,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1206,6 +1212,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1262,6 +1270,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index ef881af824..6d3c7b6f22 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -278,6 +280,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1264,6 +1268,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1395,6 +1401,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1480,6 +1488,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index fd34bd0b28..f294194f82 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -280,6 +282,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1094,6 +1098,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1206,6 +1212,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index d1f5cc7194..9348822977 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -277,6 +279,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1015,6 +1019,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1128,6 +1134,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1184,6 +1192,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index 82ef99360c..dcea40e237 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -69,6 +69,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -323,6 +325,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1099,6 +1103,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1202,6 +1208,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1258,6 +1266,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1314,6 +1324,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 96e252f546..b53bc1031f 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -290,6 +292,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1090,6 +1094,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1230,6 +1236,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index f228fda57f..d63a1f7bed 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -271,6 +273,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1092,6 +1096,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1223,6 +1229,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1308,6 +1316,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index 49e7dcb08c..7e6090a8e7 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -276,6 +278,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1089,6 +1093,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1204,6 +1210,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index b8d549205c..d156217fc4 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -61,6 +61,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -290,6 +292,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1034,6 +1038,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1135,6 +1141,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1214,6 +1222,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index 7f098e15fc..40e5864909 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -55,6 +55,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -269,6 +271,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -982,6 +986,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1096,6 +1102,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index 75b6c31a04..1e4c437643 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -275,6 +277,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1029,6 +1033,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1167,6 +1173,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1252,6 +1260,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 7e7150207d..edf7366919 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -54,6 +54,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -266,6 +268,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1022,6 +1026,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1160,6 +1166,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index 159401cb19..08c1a7d906 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -276,6 +278,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1048,6 +1052,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1161,6 +1167,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1217,6 +1225,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index bbe3bbb2f9..316cb386a8 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -72,6 +72,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -337,6 +339,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1378,6 +1382,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1762,6 +1768,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1819,6 +1827,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index ca831e2991..d206600712 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -64,6 +64,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -309,6 +311,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1042,6 +1046,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1145,6 +1151,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1204,6 +1212,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index c4e37de665..8a39689455 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -55,6 +55,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -265,6 +267,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -613,6 +617,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -650,6 +656,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 8365ffb0e1..0f56f856da 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -271,6 +273,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -810,6 +814,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1046,6 +1052,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index 26773e04be..47ac88fd4b 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -291,6 +293,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1066,6 +1070,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1180,6 +1186,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1236,6 +1244,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1280,6 +1290,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index 5bf1bbdb0d..b05b26b452 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -87,6 +87,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -355,6 +357,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1130,6 +1134,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1237,6 +1243,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1297,6 +1305,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1353,6 +1363,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index da1f51f72a..40b60c74c7 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -69,6 +69,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -316,6 +318,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1090,6 +1094,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1192,6 +1198,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1250,6 +1258,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index 1f0e10406c..d14a846523 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -79,6 +79,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -344,6 +346,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1799,6 +1803,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1921,6 +1927,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1993,6 +2001,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2085,6 +2095,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2129,6 +2141,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index 88fb79596f..269ea02041 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -288,6 +290,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1147,6 +1151,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1266,6 +1272,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1322,6 +1330,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1366,6 +1376,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index 3008bd8e38..06d654dcf2 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -97,6 +97,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -353,6 +355,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1202,6 +1206,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1313,6 +1319,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1371,6 +1379,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1427,6 +1437,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index 9911944da8..1d7d1739a0 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -52,6 +52,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -280,6 +282,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1124,6 +1128,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1233,6 +1239,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1318,6 +1326,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index 09b66a0de6..575a67a076 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -62,6 +62,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -291,6 +293,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1179,6 +1183,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1292,6 +1298,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1348,6 +1356,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 3afeb524f9..2af7f54328 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -284,6 +286,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1135,6 +1139,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1249,6 +1255,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1305,6 +1313,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1349,6 +1359,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index e14d10a3df..0e43d857a8 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -105,6 +105,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -372,6 +374,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1241,6 +1245,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1372,6 +1378,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1436,6 +1444,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1521,6 +1531,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index d02b9868f3..e9ba36969d 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -68,6 +68,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -299,6 +301,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1064,6 +1068,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1182,6 +1188,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1235,6 +1243,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index 7cf31d0145..a0e204ba06 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -64,6 +64,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -278,6 +280,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -982,6 +986,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1188,6 +1194,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1419,6 +1427,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index 2fcdd09089..e10f1ab32e 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -994,6 +998,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1111,6 +1117,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1167,6 +1175,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index 80cf90d595..760588dd71 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -269,6 +271,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -963,6 +967,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1077,6 +1083,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index 015df564a5..9644f9310a 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -281,6 +283,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1001,6 +1005,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1115,6 +1121,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1171,6 +1179,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index cef3168bf2..d846b62f1e 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -279,6 +281,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -989,6 +993,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1103,6 +1109,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index 9a71500154..745df7a0ae 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -281,6 +283,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1141,6 +1145,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1254,6 +1260,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1310,6 +1318,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index 078bcfdc3d..3e3af7a816 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -276,6 +278,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1049,6 +1053,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1162,6 +1168,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1218,6 +1226,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index 3e158f5cad..afbca79a01 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -124,6 +124,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -408,6 +410,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1283,6 +1287,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1396,6 +1402,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1456,6 +1464,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1512,6 +1522,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-alert-burndown.campaign.g.lock.yml b/.github/workflows/security-alert-burndown.campaign.g.lock.yml index 649f0fd185..2626bee819 100644 --- a/.github/workflows/security-alert-burndown.campaign.g.lock.yml +++ b/.github/workflows/security-alert-burndown.campaign.g.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -268,6 +270,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1428,6 +1432,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1535,6 +1541,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1619,6 +1627,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index 0c3b6b77a5..e0241008b1 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -65,6 +65,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -307,6 +309,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1057,6 +1061,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1165,6 +1171,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1245,6 +1253,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index a506c56a60..1e452481ac 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -69,6 +69,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -324,6 +326,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1178,6 +1182,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1281,6 +1287,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1337,6 +1345,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1393,6 +1403,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index 05a82c20da..5d0918aa76 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -274,6 +276,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1131,6 +1135,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1243,6 +1249,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index eb04174d83..cc652ab1dd 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1087,6 +1091,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1205,6 +1211,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1261,6 +1269,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index 42df98c4a7..e083a3b2c1 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -293,6 +295,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1089,6 +1093,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1208,6 +1214,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1271,6 +1279,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1356,6 +1366,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-agent.lock.yml b/.github/workflows/smoke-agent.lock.yml index 0d06377db6..0aff41888a 100644 --- a/.github/workflows/smoke-agent.lock.yml +++ b/.github/workflows/smoke-agent.lock.yml @@ -67,6 +67,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -299,6 +301,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1040,6 +1044,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1162,6 +1168,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1214,6 +1222,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index da3e53f9a3..1afa1a13b0 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -81,6 +81,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -695,6 +697,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2717,6 +2721,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2839,6 +2845,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2895,6 +2903,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2980,6 +2990,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index b8d9effb56..bcd01c4e2f 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -74,6 +74,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -338,6 +340,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1544,6 +1548,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1664,6 +1670,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1715,6 +1723,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1771,6 +1781,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-copilot-arm.lock.yml b/.github/workflows/smoke-copilot-arm.lock.yml index 871e29b503..e6f3d9dea9 100644 --- a/.github/workflows/smoke-copilot-arm.lock.yml +++ b/.github/workflows/smoke-copilot-arm.lock.yml @@ -73,6 +73,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -343,6 +345,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2080,6 +2084,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2204,6 +2210,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2256,6 +2264,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2347,6 +2357,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index 71e91a9377..321807d2fd 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -75,6 +75,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -346,6 +348,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2195,6 +2199,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2319,6 +2325,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2371,6 +2379,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -2462,6 +2472,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-create-cross-repo-pr.lock.yml b/.github/workflows/smoke-create-cross-repo-pr.lock.yml index 3b6ad7b692..aa09be596c 100644 --- a/.github/workflows/smoke-create-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-create-cross-repo-pr.lock.yml @@ -68,6 +68,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -307,6 +309,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1174,6 +1178,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1310,6 +1316,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1365,6 +1373,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-gemini.lock.yml b/.github/workflows/smoke-gemini.lock.yml index 86f838af4c..8740f8f285 100644 --- a/.github/workflows/smoke-gemini.lock.yml +++ b/.github/workflows/smoke-gemini.lock.yml @@ -74,6 +74,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -332,6 +334,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1263,6 +1267,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1383,6 +1389,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1434,6 +1442,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1490,6 +1500,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-multi-pr.lock.yml b/.github/workflows/smoke-multi-pr.lock.yml index 101bb96d92..ed3a2437c2 100644 --- a/.github/workflows/smoke-multi-pr.lock.yml +++ b/.github/workflows/smoke-multi-pr.lock.yml @@ -69,6 +69,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -316,6 +318,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1117,6 +1121,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1254,6 +1260,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1307,6 +1315,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index a745e7e5cd..c3a5b14b70 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -67,6 +67,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -315,6 +317,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1550,6 +1554,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1687,6 +1693,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1742,6 +1750,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index 62baedc2c8..db899836f3 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -67,6 +67,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -311,6 +313,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1137,6 +1141,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1258,6 +1264,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1309,6 +1317,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index 539245b5ef..077ce1062f 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -69,6 +69,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -300,6 +302,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1015,6 +1019,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1136,6 +1142,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1185,6 +1193,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-update-cross-repo-pr.lock.yml b/.github/workflows/smoke-update-cross-repo-pr.lock.yml index 97c8f8bb92..65e8fc2adb 100644 --- a/.github/workflows/smoke-update-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-update-cross-repo-pr.lock.yml @@ -68,6 +68,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -314,6 +316,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1176,6 +1180,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1298,6 +1304,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1353,6 +1361,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1440,6 +1450,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml index 1bdf0cbdec..b6f6e14cfd 100644 --- a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml +++ b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml @@ -75,6 +75,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -315,6 +317,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1046,6 +1050,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1144,6 +1150,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1192,6 +1200,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-workflow-call.lock.yml b/.github/workflows/smoke-workflow-call.lock.yml index cafb0d8386..772b96aa9b 100644 --- a/.github/workflows/smoke-workflow-call.lock.yml +++ b/.github/workflows/smoke-workflow-call.lock.yml @@ -63,6 +63,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -295,6 +297,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1005,6 +1009,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1104,6 +1110,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1155,6 +1163,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index b66ded7e0d..1116205d0d 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -68,6 +68,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -308,6 +310,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1138,6 +1142,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1253,6 +1259,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1309,6 +1317,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1353,6 +1363,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index b0999a3b99..41ddd6e337 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -277,6 +279,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1123,6 +1127,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1236,6 +1242,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1292,6 +1300,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index f9e65932ec..9a2150be78 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -268,6 +270,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1077,6 +1081,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1189,6 +1195,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1245,6 +1253,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index 5110ca34fc..f283bb0c8a 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -262,6 +264,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1078,6 +1082,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1193,6 +1199,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index d1c8739bff..be8c3451a5 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -285,6 +287,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1023,6 +1027,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1136,6 +1142,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1238,6 +1246,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index 86cc33378b..8c5505c756 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -60,6 +60,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -303,6 +305,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1208,6 +1212,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1333,6 +1339,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1420,6 +1428,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1505,6 +1515,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1549,6 +1561,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index 76d81f7352..5e252ca547 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -273,6 +275,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -975,6 +979,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1089,6 +1095,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-create-pr-error-handling.lock.yml b/.github/workflows/test-create-pr-error-handling.lock.yml index a55d0762cd..45212f90ae 100644 --- a/.github/workflows/test-create-pr-error-handling.lock.yml +++ b/.github/workflows/test-create-pr-error-handling.lock.yml @@ -50,6 +50,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -266,6 +268,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1064,6 +1068,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1195,6 +1201,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1280,6 +1288,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-dispatcher.lock.yml b/.github/workflows/test-dispatcher.lock.yml index b333ea2986..9146a2c171 100644 --- a/.github/workflows/test-dispatcher.lock.yml +++ b/.github/workflows/test-dispatcher.lock.yml @@ -49,6 +49,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -255,6 +257,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -905,6 +909,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1015,6 +1021,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-project-url-default.lock.yml b/.github/workflows/test-project-url-default.lock.yml index 69dd71495a..9704ac7deb 100644 --- a/.github/workflows/test-project-url-default.lock.yml +++ b/.github/workflows/test-project-url-default.lock.yml @@ -49,6 +49,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -254,6 +256,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1164,6 +1168,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1274,6 +1280,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-workflow.lock.yml b/.github/workflows/test-workflow.lock.yml index 811400c51c..2b807dc2e1 100644 --- a/.github/workflows/test-workflow.lock.yml +++ b/.github/workflows/test-workflow.lock.yml @@ -54,6 +54,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -241,6 +243,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index 8ab3942488..edaf2aa4b0 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -77,6 +77,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -320,6 +322,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1136,6 +1140,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1255,6 +1261,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1317,6 +1325,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index 48de89ed85..222124f9ff 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -273,6 +275,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1059,6 +1063,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1172,6 +1178,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index 4590fa4efe..903b67c917 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -56,6 +56,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -272,6 +274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1018,6 +1022,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1137,6 +1143,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1200,6 +1208,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index b8f226e21f..52cd6000b4 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -73,6 +73,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -327,6 +329,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1327,6 +1331,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1444,6 +1450,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1508,6 +1516,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1593,6 +1603,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1637,6 +1649,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index 01c3515267..7234cc1b33 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -275,6 +277,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1015,6 +1019,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1128,6 +1134,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-editors-health-check.lock.yml b/.github/workflows/weekly-editors-health-check.lock.yml index a5a267c2f3..539a1d73da 100644 --- a/.github/workflows/weekly-editors-health-check.lock.yml +++ b/.github/workflows/weekly-editors-health-check.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -269,6 +271,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1073,6 +1077,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1211,6 +1217,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1298,6 +1306,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index d06f983454..b1ca2aeff1 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -287,6 +289,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1046,6 +1050,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1164,6 +1170,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1220,6 +1228,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1264,6 +1274,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index 1fdfede1bb..40b64c5613 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -53,6 +53,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -267,6 +269,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -976,6 +980,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1114,6 +1120,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index 78bff677ca..155c3dea2b 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -62,6 +62,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -306,6 +308,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1120,6 +1124,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1222,6 +1228,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1287,6 +1295,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1361,6 +1371,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index 2bb669fcb3..d90a941eb1 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -59,6 +59,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -288,6 +290,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1221,6 +1225,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1323,6 +1329,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1360,6 +1368,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1444,6 +1454,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 1d39ab1786..34d1957949 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -271,6 +273,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1053,6 +1057,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1171,6 +1177,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index 94ddf6a621..6190d93eb7 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -57,6 +57,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -270,6 +272,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1066,6 +1070,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false @@ -1182,6 +1188,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: bf56fc9 sparse-checkout: | actions persist-credentials: false diff --git a/pkg/workflow/compiler_custom_actions_test.go b/pkg/workflow/compiler_custom_actions_test.go index b09c327e02..c4e5d19af4 100644 --- a/pkg/workflow/compiler_custom_actions_test.go +++ b/pkg/workflow/compiler_custom_actions_test.go @@ -227,4 +227,112 @@ Test workflow with script mode. if strings.Contains(lockStr, setupActionPattern) { t.Error("Expected script mode to NOT use 'uses: ./actions/setup' but instead run bash script directly") } + + // 7. Checkout should include ref: for the version + if !strings.Contains(lockStr, "ref: 1.0.0") { + t.Error("Expected 'ref: 1.0.0' in checkout step for script mode when version is set") + } +} + +// TestVersionToGitRef tests the versionToGitRef helper function used to derive +// a clean git ref from `git describe` output for use in actions/checkout ref: fields. +func TestVersionToGitRef(t *testing.T) { + tests := []struct { + name string + version string + want string + }{ + { + name: "empty version returns empty ref", + version: "", + want: "", + }, + { + name: "dev version returns empty ref", + version: "dev", + want: "", + }, + { + name: "plain short SHA used as-is", + version: "e284d1e", + want: "e284d1e", + }, + { + name: "short SHA with -dirty suffix stripped", + version: "e284d1e-dirty", + want: "e284d1e", + }, + { + name: "simple version tag used as-is", + version: "v1.2.3", + want: "v1.2.3", + }, + { + name: "version tag with -dirty stripped", + version: "v1.2.3-dirty", + want: "v1.2.3", + }, + { + name: "git describe output with N commits extracts SHA", + version: "v0.57.2-60-ge284d1e", + want: "e284d1e", + }, + { + name: "git describe output with -dirty extracts SHA", + version: "v0.57.2-60-ge284d1e-dirty", + want: "e284d1e", + }, + { + name: "numeric version tag used as-is", + version: "1.0.0", + want: "1.0.0", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + if got := versionToGitRef(tt.version); got != tt.want { + t.Errorf("versionToGitRef(%q) = %q, want %q", tt.version, got, tt.want) + } + }) + } +} + +// TestCheckoutActionsFolderDevModeHasRepository verifies that the Checkout actions folder +// step in dev mode includes repository: github/gh-aw so that cross-repo callers (e.g. +// event-driven relays) can find the actions/ directory instead of defaulting to the +// caller's repo which has no actions/ directory. +func TestCheckoutActionsFolderDevModeHasRepository(t *testing.T) { + compiler := NewCompilerWithVersion("dev") + compiler.SetActionMode(ActionModeDev) + + lines := compiler.generateCheckoutActionsFolder(nil) + combined := strings.Join(lines, "") + + if !strings.Contains(combined, "repository: github/gh-aw") { + t.Error("Dev mode Checkout actions folder should include 'repository: github/gh-aw' (fix for #20658)") + } + + // When version is "dev", no ref: should be emitted + if strings.Contains(combined, "ref:") { + t.Error("Dev mode with 'dev' version should not include ref: field") + } +} + +// TestCheckoutActionsFolderDevModeWithVersionHasRef verifies that when a real version +// SHA is set, the Checkout actions folder step in dev mode includes both +// repository: and ref: fields. +func TestCheckoutActionsFolderDevModeWithVersionHasRef(t *testing.T) { + compiler := NewCompilerWithVersion("e284d1e") + compiler.SetActionMode(ActionModeDev) + + lines := compiler.generateCheckoutActionsFolder(nil) + combined := strings.Join(lines, "") + + if !strings.Contains(combined, "repository: github/gh-aw") { + t.Error("Dev mode Checkout actions folder should include 'repository: github/gh-aw'") + } + if !strings.Contains(combined, "ref: e284d1e") { + t.Error("Dev mode Checkout actions folder should include 'ref: e284d1e' when version is set") + } } diff --git a/pkg/workflow/compiler_yaml_helpers.go b/pkg/workflow/compiler_yaml_helpers.go index eb46b1226a..463ab68efc 100644 --- a/pkg/workflow/compiler_yaml_helpers.go +++ b/pkg/workflow/compiler_yaml_helpers.go @@ -3,6 +3,7 @@ package workflow import ( "fmt" "path/filepath" + "regexp" "slices" "strings" @@ -156,6 +157,32 @@ func generatePlaceholderSubstitutionStep(yaml *strings.Builder, expressionMappin yaml.WriteString(indent + " });\n") } +// versionToGitRef converts a compiler version string to a valid git ref for use +// in actions/checkout ref: fields. +// +// The version string is typically produced by `git describe --tags --always --dirty` +// and may contain suffixes that are not valid git refs. This function normalises it: +// - "dev" or empty → "" (no ref, checkout will use the repository default branch) +// - "v1.2.3-60-ge284d1e" → "e284d1e" (extract SHA from git-describe output) +// - "v1.2.3-60-ge284d1e-dirty" → "e284d1e" (strip -dirty, then extract SHA) +// - "v1.2.3-dirty" → "v1.2.3" (strip -dirty, valid tag) +// - "v1.2.3" → "v1.2.3" (valid tag, used as-is) +// - "e284d1e" → "e284d1e" (plain short SHA, used as-is) +func versionToGitRef(version string) string { + if version == "" || version == "dev" { + return "" + } + // Strip optional -dirty suffix (appended by `git describe --dirty`) + clean := strings.TrimSuffix(version, "-dirty") + // If the version looks like `git describe` output with -N-gSHA, extract the SHA. + // Pattern: anything ending with --g + shaRe := regexp.MustCompile(`-\d+-g([0-9a-f]+)$`) + if m := shaRe.FindStringSubmatch(clean); m != nil { + return m[1] + } + return clean +} + // generateCheckoutActionsFolder generates the checkout step for the actions folder // when running in dev mode and not using the action-tag feature. This is used to // checkout the local actions before running the setup action. @@ -175,31 +202,53 @@ func (c *Compiler) generateCheckoutActionsFolder(data *WorkflowData) []string { } } + // Derive a clean git ref from the compiler's version string. + // Required so that cross-repo callers checkout github/gh-aw at the correct + // commit rather than the default branch, which may be missing JS modules + // that were added after the latest tag. + ref := versionToGitRef(c.version) + // Script mode: checkout .github folder from github/gh-aw to /tmp/gh-aw/actions-source/ if c.actionMode.IsScript() { - return []string{ + lines := []string{ " - name: Checkout actions folder\n", fmt.Sprintf(" uses: %s\n", GetActionPin("actions/checkout")), " with:\n", " repository: github/gh-aw\n", + } + if ref != "" { + lines = append(lines, fmt.Sprintf(" ref: %s\n", ref)) + } + lines = append(lines, " sparse-checkout: |\n", " actions\n", " path: /tmp/gh-aw/actions-source\n", " fetch-depth: 1\n", " persist-credentials: false\n", - } + ) + return lines } - // Dev mode: checkout local actions folder + // Dev mode: checkout actions folder from github/gh-aw so that cross-repo + // callers (e.g. event-driven relays) can find the actions/ directory. + // Without repository: the runner defaults to the caller's repo, which has + // no actions/ directory, causing Setup Scripts to fail immediately. if c.actionMode.IsDev() { - return []string{ + lines := []string{ " - name: Checkout actions folder\n", fmt.Sprintf(" uses: %s\n", GetActionPin("actions/checkout")), " with:\n", + " repository: github/gh-aw\n", + } + if ref != "" { + lines = append(lines, fmt.Sprintf(" ref: %s\n", ref)) + } + lines = append(lines, " sparse-checkout: |\n", " actions\n", " persist-credentials: false\n", - } + ) + return lines } // Release mode or other modes: no checkout needed diff --git a/pkg/workflow/maintenance_workflow.go b/pkg/workflow/maintenance_workflow.go index 2eefc97c4d..fb54126607 100644 --- a/pkg/workflow/maintenance_workflow.go +++ b/pkg/workflow/maintenance_workflow.go @@ -209,16 +209,21 @@ jobs: } setupActionRef := ResolveSetupActionReference(actionMode, version, actionTag, resolver) - // Add checkout step only in dev mode (for local action paths) - if actionMode == ActionModeDev { - yaml.WriteString(` - name: Checkout actions folder - uses: ` + GetActionPin("actions/checkout") + ` - with: - sparse-checkout: | - actions - persist-credentials: false - -`) + // Add checkout step only in dev/script mode (for local action paths) + if actionMode == ActionModeDev || actionMode == ActionModeScript { + ref := versionToGitRef(version) + refLine := "" + if ref != "" { + refLine = " ref: " + ref + "\n" + } + yaml.WriteString(" - name: Checkout actions folder\n") + yaml.WriteString(" uses: " + GetActionPin("actions/checkout") + "\n") + yaml.WriteString(" with:\n") + yaml.WriteString(" repository: github/gh-aw\n") + yaml.WriteString(refLine) + yaml.WriteString(" sparse-checkout: |\n") + yaml.WriteString(" actions\n") + yaml.WriteString(" persist-credentials: false\n\n") } // Add setup step with the resolved action reference From e5318f0861fabebadc8887ef31149aed6f8cf89e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Mar 2026 02:07:42 +0000 Subject: [PATCH 4/5] chore: merge main and recompile all lock files Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/ace-editor.lock.yml | 6 +++--- .../workflows/agent-performance-analyzer.lock.yml | 12 ++++++------ .github/workflows/agent-persona-explorer.lock.yml | 12 ++++++------ .github/workflows/agentics-maintenance.yml | 2 +- .github/workflows/ai-moderator.lock.yml | 12 ++++++------ .github/workflows/archie.lock.yml | 10 +++++----- .github/workflows/artifacts-summary.lock.yml | 8 ++++---- .github/workflows/audit-workflows.lock.yml | 14 +++++++------- .github/workflows/auto-triage-issues.lock.yml | 10 +++++----- .github/workflows/blog-auditor.lock.yml | 8 ++++---- .github/workflows/bot-detection.lock.yml | 8 ++++---- .github/workflows/brave.lock.yml | 10 +++++----- .github/workflows/breaking-change-checker.lock.yml | 10 +++++----- .github/workflows/changeset.lock.yml | 10 +++++----- .github/workflows/chroma-issue-indexer.lock.yml | 4 ++-- .github/workflows/ci-coach.lock.yml | 10 +++++----- .github/workflows/ci-doctor.lock.yml | 12 ++++++------ .../claude-code-user-docs-review.lock.yml | 10 +++++----- .github/workflows/cli-consistency-checker.lock.yml | 8 ++++---- .github/workflows/cli-version-checker.lock.yml | 10 +++++----- .github/workflows/cloclo.lock.yml | 12 ++++++------ .github/workflows/code-scanning-fixer.lock.yml | 14 +++++++------- .github/workflows/code-simplifier.lock.yml | 10 +++++----- .../codex-github-remote-mcp-test.lock.yml | 4 ++-- .github/workflows/commit-changes-analyzer.lock.yml | 8 ++++---- .github/workflows/constraint-solving-potd.lock.yml | 10 +++++----- .github/workflows/contribution-check.lock.yml | 8 ++++---- .github/workflows/copilot-agent-analysis.lock.yml | 12 ++++++------ .../workflows/copilot-cli-deep-research.lock.yml | 10 +++++----- .../workflows/copilot-pr-merged-report.lock.yml | 10 +++++----- .github/workflows/copilot-pr-nlp-analysis.lock.yml | 14 +++++++------- .../workflows/copilot-pr-prompt-analysis.lock.yml | 12 ++++++------ .../workflows/copilot-session-insights.lock.yml | 14 +++++++------- .github/workflows/craft.lock.yml | 10 +++++----- .../workflows/daily-architecture-diagram.lock.yml | 10 +++++----- .../workflows/daily-assign-issue-to-user.lock.yml | 8 ++++---- .github/workflows/daily-choice-test.lock.yml | 8 ++++---- .github/workflows/daily-cli-performance.lock.yml | 10 +++++----- .github/workflows/daily-cli-tools-tester.lock.yml | 8 ++++---- .github/workflows/daily-code-metrics.lock.yml | 14 +++++++------- .github/workflows/daily-compiler-quality.lock.yml | 10 +++++----- .../workflows/daily-copilot-token-report.lock.yml | 14 +++++++------- .github/workflows/daily-doc-healer.lock.yml | 10 +++++----- .github/workflows/daily-doc-updater.lock.yml | 10 +++++----- .github/workflows/daily-file-diet.lock.yml | 10 +++++----- .github/workflows/daily-firewall-report.lock.yml | 12 ++++++------ .github/workflows/daily-function-namer.lock.yml | 12 +++++++++++- .github/workflows/daily-issues-report.lock.yml | 14 +++++++------- .../workflows/daily-malicious-code-scan.lock.yml | 8 ++++---- .../daily-mcp-concurrency-analysis.lock.yml | 10 +++++----- .../daily-multi-device-docs-tester.lock.yml | 10 +++++----- .github/workflows/daily-news.lock.yml | 14 +++++++------- .../workflows/daily-observability-report.lock.yml | 10 +++++----- .../workflows/daily-performance-summary.lock.yml | 12 ++++++------ .github/workflows/daily-regulatory.lock.yml | 8 ++++---- .../daily-rendering-scripts-verifier.lock.yml | 12 ++++++------ .github/workflows/daily-repo-chronicle.lock.yml | 12 ++++++------ .../workflows/daily-safe-output-optimizer.lock.yml | 12 ++++++------ .../daily-safe-outputs-conformance.lock.yml | 8 ++++---- .github/workflows/daily-secrets-analysis.lock.yml | 8 ++++---- .github/workflows/daily-security-red-team.lock.yml | 8 ++++---- .github/workflows/daily-semgrep-scan.lock.yml | 8 ++++---- .../workflows/daily-syntax-error-quality.lock.yml | 8 ++++---- .../daily-team-evolution-insights.lock.yml | 8 ++++---- .github/workflows/daily-team-status.lock.yml | 10 +++++----- .../daily-testify-uber-super-expert.lock.yml | 12 ++++++------ .github/workflows/daily-workflow-updater.lock.yml | 8 ++++---- .github/workflows/dead-code-remover.lock.yml | 12 ++++++------ .github/workflows/deep-report.lock.yml | 14 +++++++------- .github/workflows/delight.lock.yml | 10 +++++----- .github/workflows/dependabot-burner.lock.yml | 10 +++++----- .github/workflows/dependabot-go-checker.lock.yml | 8 ++++---- .github/workflows/dev-hawk.lock.yml | 10 +++++----- .github/workflows/dev.lock.yml | 8 ++++---- .../workflows/developer-docs-consolidator.lock.yml | 12 ++++++------ .github/workflows/dictation-prompt.lock.yml | 8 ++++---- .github/workflows/discussion-task-miner.lock.yml | 10 +++++----- .github/workflows/docs-noob-tester.lock.yml | 10 +++++----- .github/workflows/draft-pr-cleanup.lock.yml | 8 ++++---- .github/workflows/duplicate-code-detector.lock.yml | 8 ++++---- .../workflows/example-permissions-warning.lock.yml | 4 ++-- .../workflows/example-workflow-analyzer.lock.yml | 8 ++++---- .github/workflows/firewall-escape.lock.yml | 14 +++++++------- .github/workflows/firewall.lock.yml | 4 ++-- .github/workflows/functional-pragmatist.lock.yml | 8 ++++---- .../github-mcp-structural-analysis.lock.yml | 12 ++++++------ .github/workflows/github-mcp-tools-report.lock.yml | 10 +++++----- .../workflows/github-remote-mcp-auth-test.lock.yml | 8 ++++---- .github/workflows/glossary-maintainer.lock.yml | 12 ++++++------ .github/workflows/go-fan.lock.yml | 10 +++++----- .github/workflows/go-logger.lock.yml | 10 +++++----- .github/workflows/go-pattern-detector.lock.yml | 8 ++++---- .github/workflows/gpclean.lock.yml | 10 +++++----- .github/workflows/grumpy-reviewer.lock.yml | 12 ++++++------ .github/workflows/hourly-ci-cleaner.lock.yml | 8 ++++---- .github/workflows/instructions-janitor.lock.yml | 10 +++++----- .github/workflows/issue-arborist.lock.yml | 8 ++++---- .github/workflows/issue-monster.lock.yml | 10 +++++----- .github/workflows/issue-triage-agent.lock.yml | 8 ++++---- .github/workflows/jsweep.lock.yml | 10 +++++----- .github/workflows/layout-spec-maintainer.lock.yml | 8 ++++---- .github/workflows/lockfile-stats.lock.yml | 10 +++++----- .github/workflows/mcp-inspector.lock.yml | 10 +++++----- .github/workflows/mergefest.lock.yml | 10 +++++----- .github/workflows/metrics-collector.lock.yml | 8 ++++---- .github/workflows/notion-issue-summary.lock.yml | 8 ++++---- .github/workflows/org-health-report.lock.yml | 12 ++++++------ .github/workflows/pdf-summary.lock.yml | 12 ++++++------ .github/workflows/plan.lock.yml | 10 +++++----- .github/workflows/poem-bot.lock.yml | 14 +++++++------- .github/workflows/portfolio-analyst.lock.yml | 12 ++++++------ .github/workflows/pr-nitpick-reviewer.lock.yml | 12 ++++++------ .github/workflows/pr-triage-agent.lock.yml | 10 +++++----- .../workflows/prompt-clustering-analysis.lock.yml | 10 +++++----- .github/workflows/python-data-charts.lock.yml | 12 ++++++------ .github/workflows/q.lock.yml | 12 ++++++------ .github/workflows/refiner.lock.yml | 10 +++++----- .github/workflows/release.lock.yml | 10 +++++----- .github/workflows/repo-audit-analyzer.lock.yml | 10 +++++----- .github/workflows/repo-tree-map.lock.yml | 8 ++++---- .../workflows/repository-quality-improver.lock.yml | 10 +++++----- .github/workflows/research.lock.yml | 8 ++++---- .github/workflows/safe-output-health.lock.yml | 10 +++++----- .../workflows/schema-consistency-checker.lock.yml | 10 +++++----- .github/workflows/scout.lock.yml | 12 ++++++------ .../security-alert-burndown.campaign.g.lock.yml | 10 +++++----- .github/workflows/security-compliance.lock.yml | 10 +++++----- .github/workflows/security-review.lock.yml | 12 ++++++------ .../workflows/semantic-function-refactor.lock.yml | 8 ++++---- .github/workflows/sergo.lock.yml | 10 +++++----- .github/workflows/slide-deck-maintainer.lock.yml | 12 ++++++------ .github/workflows/smoke-agent.lock.yml | 10 +++++----- .github/workflows/smoke-claude.lock.yml | 12 ++++++------ .github/workflows/smoke-codex.lock.yml | 12 ++++++------ .github/workflows/smoke-copilot-arm.lock.yml | 12 ++++++------ .github/workflows/smoke-copilot.lock.yml | 12 ++++++------ .../workflows/smoke-create-cross-repo-pr.lock.yml | 10 +++++----- .github/workflows/smoke-gemini.lock.yml | 12 ++++++------ .github/workflows/smoke-multi-pr.lock.yml | 10 +++++----- .github/workflows/smoke-project.lock.yml | 10 +++++----- .github/workflows/smoke-temporary-id.lock.yml | 10 +++++----- .github/workflows/smoke-test-tools.lock.yml | 10 +++++----- .../workflows/smoke-update-cross-repo-pr.lock.yml | 12 ++++++------ .../smoke-workflow-call-with-inputs.lock.yml | 10 +++++----- .github/workflows/smoke-workflow-call.lock.yml | 10 +++++----- .github/workflows/stale-repo-identifier.lock.yml | 12 ++++++------ .github/workflows/static-analysis-report.lock.yml | 10 +++++----- .github/workflows/step-name-alignment.lock.yml | 10 +++++----- .github/workflows/sub-issue-closer.lock.yml | 8 ++++---- .github/workflows/super-linter.lock.yml | 10 +++++----- .github/workflows/technical-doc-writer.lock.yml | 14 +++++++------- .github/workflows/terminal-stylist.lock.yml | 8 ++++---- .../test-create-pr-error-handling.lock.yml | 10 +++++----- .github/workflows/test-dispatcher.lock.yml | 8 ++++---- .../workflows/test-project-url-default.lock.yml | 8 ++++---- .github/workflows/test-workflow.lock.yml | 4 ++-- .github/workflows/tidy.lock.yml | 10 +++++----- .github/workflows/typist.lock.yml | 8 ++++---- .github/workflows/ubuntu-image-analyzer.lock.yml | 10 +++++----- .github/workflows/unbloat-docs.lock.yml | 14 +++++++------- .github/workflows/video-analyzer.lock.yml | 8 ++++---- .../workflows/weekly-editors-health-check.lock.yml | 10 +++++----- .github/workflows/weekly-issue-summary.lock.yml | 12 ++++++------ .../weekly-safe-outputs-spec-review.lock.yml | 8 ++++---- .github/workflows/workflow-generator.lock.yml | 12 ++++++------ .github/workflows/workflow-health-manager.lock.yml | 12 ++++++------ .github/workflows/workflow-normalizer.lock.yml | 8 ++++---- .../workflows/workflow-skill-extractor.lock.yml | 8 ++++---- 168 files changed, 843 insertions(+), 833 deletions(-) diff --git a/.github/workflows/ace-editor.lock.yml b/.github/workflows/ace-editor.lock.yml index aaa5ba8286..98f5ba6848 100644 --- a/.github/workflows/ace-editor.lock.yml +++ b/.github/workflows/ace-editor.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -563,7 +563,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index b8b5af4dbd..e9ea99f664 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -287,7 +287,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1224,7 +1224,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1329,7 +1329,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1368,7 +1368,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1454,7 +1454,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index fad3315169..bb1cea4fe0 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1065,7 +1065,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1167,7 +1167,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1214,7 +1214,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1272,7 +1272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agentics-maintenance.yml b/.github/workflows/agentics-maintenance.yml index ba501ee5fe..1d99cc8307 100644 --- a/.github/workflows/agentics-maintenance.yml +++ b/.github/workflows/agentics-maintenance.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index 13454183f8..34ca73d367 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -78,7 +78,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -324,7 +324,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -968,7 +968,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1068,7 +1068,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1147,7 +1147,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1207,7 +1207,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index 969fb47c4c..6d28dd1998 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -334,7 +334,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1036,7 +1036,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1142,7 +1142,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1204,7 +1204,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index 01f6e4f447..ec244d6e6d 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -968,7 +968,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1083,7 +1083,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index f44c3746c1..f3252e10b5 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -304,7 +304,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1255,7 +1255,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1370,7 +1370,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1452,7 +1452,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1510,7 +1510,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1556,7 +1556,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index a4bf98698a..f4f3f2ff6a 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1046,7 +1046,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1148,7 +1148,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1211,7 +1211,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index 6a1ba8744f..4c6c964672 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -278,7 +278,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1089,7 +1089,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1209,7 +1209,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index 565ab72bdc..5ebbfe08b7 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -55,7 +55,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1004,7 +1004,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1917,7 +1917,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/brave.lock.yml b/.github/workflows/brave.lock.yml index 8e24f1b1fe..2b4dc8aa36 100644 --- a/.github/workflows/brave.lock.yml +++ b/.github/workflows/brave.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -318,7 +318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1024,7 +1024,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1127,7 +1127,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1189,7 +1189,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index 210bdce6cc..e8082d0525 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -273,7 +273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1011,7 +1011,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1115,7 +1115,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1178,7 +1178,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index 58c0a3e5ca..6a6022efec 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -331,7 +331,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1069,7 +1069,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1174,7 +1174,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1225,7 +1225,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/chroma-issue-indexer.lock.yml b/.github/workflows/chroma-issue-indexer.lock.yml index 8be5da8bdc..63589aee0b 100644 --- a/.github/workflows/chroma-issue-indexer.lock.yml +++ b/.github/workflows/chroma-issue-indexer.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -258,7 +258,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index 30596173e7..563864da6b 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -294,7 +294,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1073,7 +1073,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1212,7 +1212,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1299,7 +1299,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index 970a7eb392..550610b0c6 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -314,7 +314,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1238,7 +1238,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1348,7 +1348,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1416,7 +1416,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1474,7 +1474,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 4c910eedeb..55b562d405 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1057,7 +1057,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1177,7 +1177,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1235,7 +1235,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index 6c830218ea..d56dda4c29 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -262,7 +262,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -980,7 +980,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1094,7 +1094,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index ccdfa85edb..272bbe8d2d 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1083,7 +1083,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1197,7 +1197,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1255,7 +1255,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index c19194ad7a..d660e891dd 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -390,7 +390,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1394,7 +1394,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1526,7 +1526,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1592,7 +1592,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1679,7 +1679,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index ec8e4e0b4f..bdffb9281c 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1099,7 +1099,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1218,7 +1218,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1270,7 +1270,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1355,7 +1355,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1442,7 +1442,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index 7677d1879c..065b19e907 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -282,7 +282,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1004,7 +1004,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1125,7 +1125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1190,7 +1190,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index 6161f1ed91..eb18de10fb 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -242,7 +242,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index a85a482439..588e1b65b1 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -277,7 +277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1031,7 +1031,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1146,7 +1146,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/constraint-solving-potd.lock.yml b/.github/workflows/constraint-solving-potd.lock.yml index beaf4e440d..b13a72b377 100644 --- a/.github/workflows/constraint-solving-potd.lock.yml +++ b/.github/workflows/constraint-solving-potd.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -969,7 +969,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1084,7 +1084,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1142,7 +1142,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index 3daa936d9e..bd2c3c7066 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1082,7 +1082,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1201,7 +1201,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index 7c7a56af02..918409cf2d 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -306,7 +306,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1123,7 +1123,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1234,7 +1234,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1315,7 +1315,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1373,7 +1373,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index f90ab5a43d..7436eb767b 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -286,7 +286,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1040,7 +1040,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1151,7 +1151,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1232,7 +1232,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index d195b32b54..04d8b5b3ba 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -292,7 +292,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1138,7 +1138,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1253,7 +1253,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1311,7 +1311,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index e104ff90be..b973a27711 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -308,7 +308,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1144,7 +1144,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1255,7 +1255,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1336,7 +1336,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1394,7 +1394,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1440,7 +1440,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index d067a736f9..2ae4bfd5ca 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -303,7 +303,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1060,7 +1060,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1171,7 +1171,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1252,7 +1252,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1310,7 +1310,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index c9e0f9900b..2903f0acb2 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -321,7 +321,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1210,7 +1210,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1321,7 +1321,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1402,7 +1402,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1460,7 +1460,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1506,7 +1506,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index 58fcee99b8..0c4a95d580 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -311,7 +311,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1067,7 +1067,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1171,7 +1171,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1237,7 +1237,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-architecture-diagram.lock.yml b/.github/workflows/daily-architecture-diagram.lock.yml index 0b2cead268..2518225746 100644 --- a/.github/workflows/daily-architecture-diagram.lock.yml +++ b/.github/workflows/daily-architecture-diagram.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -277,7 +277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1099,7 +1099,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1234,7 +1234,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1321,7 +1321,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 8f2fde9b88..c4b2001450 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -259,7 +259,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1013,7 +1013,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1130,7 +1130,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index 37e819ce50..ed174ccfdd 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -263,7 +263,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -985,7 +985,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1100,7 +1100,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index 6c7ed8354b..3dcd3f6bc7 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1245,7 +1245,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1358,7 +1358,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1445,7 +1445,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index 2f75ee7169..87ad0c8f0e 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1059,7 +1059,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1174,7 +1174,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index bd6ce9ffec..caf1497d88 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -302,7 +302,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1184,7 +1184,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1299,7 +1299,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1381,7 +1381,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1439,7 +1439,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1485,7 +1485,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index ed4be5e516..52850efc25 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1023,7 +1023,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1143,7 +1143,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1201,7 +1201,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-copilot-token-report.lock.yml b/.github/workflows/daily-copilot-token-report.lock.yml index 5953c8c68f..a3d3adf788 100644 --- a/.github/workflows/daily-copilot-token-report.lock.yml +++ b/.github/workflows/daily-copilot-token-report.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -296,7 +296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1152,7 +1152,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1267,7 +1267,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1349,7 +1349,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1407,7 +1407,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1453,7 +1453,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-doc-healer.lock.yml b/.github/workflows/daily-doc-healer.lock.yml index d0d5e3e938..72dfe2fee8 100644 --- a/.github/workflows/daily-doc-healer.lock.yml +++ b/.github/workflows/daily-doc-healer.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -282,7 +282,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1189,7 +1189,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1330,7 +1330,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1430,7 +1430,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index 0815f1d3ea..c5f4268555 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1101,7 +1101,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1240,7 +1240,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1327,7 +1327,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index efb45b6eca..ec6a3687f1 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1029,7 +1029,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1132,7 +1132,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1194,7 +1194,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index f97588e4cd..0b491dbf04 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1141,7 +1141,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1262,7 +1262,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1320,7 +1320,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1366,7 +1366,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-function-namer.lock.yml b/.github/workflows/daily-function-namer.lock.yml index 25810e63ba..890a47df57 100644 --- a/.github/workflows/daily-function-namer.lock.yml +++ b/.github/workflows/daily-function-namer.lock.yml @@ -58,6 +58,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -282,6 +284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -869,7 +873,7 @@ jobs: - name: Append agent step summary if: always() run: bash /opt/gh-aw/actions/append_agent_step_summary.sh - - name: Copy safe outputs + - name: Copy Safe Outputs if: always() run: | mkdir -p /tmp/gh-aw @@ -1103,6 +1107,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1220,6 +1226,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1276,6 +1284,8 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index 685c5bb8b9..f0a7175800 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -308,7 +308,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1145,7 +1145,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1250,7 +1250,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1298,7 +1298,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1356,7 +1356,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1402,7 +1402,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index a7a453fa85..bdfdc1bb71 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -266,7 +266,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -878,7 +878,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -995,7 +995,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index 0b831da189..eeffbe3888 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1084,7 +1084,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1205,7 +1205,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1275,7 +1275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index c0c6959666..5b29f082f0 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1176,7 +1176,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1295,7 +1295,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1355,7 +1355,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index b894ee0a78..6a09e48574 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -307,7 +307,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1328,7 +1328,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1410,7 +1410,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1468,7 +1468,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1514,7 +1514,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index f7662c7a27..44ebabf8c0 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1102,7 +1102,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1207,7 +1207,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1255,7 +1255,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index af2f8899b3..3b671cbf4a 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -293,7 +293,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1625,7 +1625,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1746,7 +1746,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1804,7 +1804,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1850,7 +1850,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index 9686a0912a..06d5321840 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1522,7 +1522,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1643,7 +1643,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-rendering-scripts-verifier.lock.yml b/.github/workflows/daily-rendering-scripts-verifier.lock.yml index f5c304e189..020cf0c4b9 100644 --- a/.github/workflows/daily-rendering-scripts-verifier.lock.yml +++ b/.github/workflows/daily-rendering-scripts-verifier.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -289,7 +289,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1185,7 +1185,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1305,7 +1305,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1370,7 +1370,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1457,7 +1457,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index 75c18428c7..432ebfb719 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1072,7 +1072,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1192,7 +1192,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1250,7 +1250,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1296,7 +1296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index 9c3f671a9c..850459db37 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -289,7 +289,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1172,7 +1172,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1271,7 +1271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1332,7 +1332,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1390,7 +1390,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index 60f396ba03..1d09e44697 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1046,7 +1046,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1165,7 +1165,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index e756b4192a..7f5a874e38 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -270,7 +270,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1036,7 +1036,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1156,7 +1156,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index 3b6ad3c860..827f1252b6 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1050,7 +1050,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1169,7 +1169,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 6f024f7992..5154f086a4 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -273,7 +273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1022,7 +1022,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1135,7 +1135,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index 93efaf89a8..aabb29acb2 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1009,7 +1009,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1128,7 +1128,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index 20faeda173..0d41f44410 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1028,7 +1028,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1148,7 +1148,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index 503d4ad718..93323ca373 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -67,7 +67,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1000,7 +1000,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1112,7 +1112,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1163,7 +1163,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index 2b9e620267..bfc60d1ef5 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -296,7 +296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1078,7 +1078,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1185,7 +1185,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1237,7 +1237,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1320,7 +1320,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index da66ffc8c9..d68757e899 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -263,7 +263,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -986,7 +986,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1125,7 +1125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dead-code-remover.lock.yml b/.github/workflows/dead-code-remover.lock.yml index 71d72fdecc..0c111ba14c 100644 --- a/.github/workflows/dead-code-remover.lock.yml +++ b/.github/workflows/dead-code-remover.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1032,7 +1032,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1147,7 +1147,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1211,7 +1211,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1298,7 +1298,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 3b40ad38b5..9a025801b2 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -305,7 +305,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1250,7 +1250,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1365,7 +1365,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1449,7 +1449,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1507,7 +1507,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1553,7 +1553,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index 35abad7ad6..317e45e98f 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1128,7 +1128,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1244,7 +1244,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1329,7 +1329,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index 132b1ad9fd..edff3db9fa 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -992,7 +992,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1092,7 +1092,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1140,7 +1140,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index 8db7600fa9..3d3beecdc5 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1041,7 +1041,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1156,7 +1156,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index de60a154a9..b2b4efb76b 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -297,7 +297,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1073,7 +1073,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1174,7 +1174,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1225,7 +1225,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index e8341792c1..79049625bc 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -259,7 +259,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -977,7 +977,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1091,7 +1091,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index 3fba43137c..aeafc60a21 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -301,7 +301,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1238,7 +1238,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1365,7 +1365,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1451,7 +1451,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1538,7 +1538,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index 8492d69290..9bf3b31d1d 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -992,7 +992,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1125,7 +1125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/discussion-task-miner.lock.yml b/.github/workflows/discussion-task-miner.lock.yml index bd8d5a7bb4..85769791ee 100644 --- a/.github/workflows/discussion-task-miner.lock.yml +++ b/.github/workflows/discussion-task-miner.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -289,7 +289,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1112,7 +1112,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1226,7 +1226,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1314,7 +1314,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index f4181ad882..8dd9a71277 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1031,7 +1031,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1146,7 +1146,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1206,7 +1206,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index 94d932b46f..585658d078 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -261,7 +261,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1050,7 +1050,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1168,7 +1168,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index 8deba43ddf..a1c2196a68 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1018,7 +1018,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1132,7 +1132,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index 36a6c94c7a..397d19d227 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -242,7 +242,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index 7dd68fd632..4fe1693846 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1091,7 +1091,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1206,7 +1206,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index b38e284644..35051b8bc0 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -306,7 +306,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1055,7 +1055,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1196,7 +1196,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1235,7 +1235,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1316,7 +1316,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1374,7 +1374,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index a1abe163ab..309134080e 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -244,7 +244,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index 474ea18d5c..53c08b7b17 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -998,7 +998,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1138,7 +1138,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index f82d1e0699..802a31a111 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1135,7 +1135,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1250,7 +1250,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1308,7 +1308,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1354,7 +1354,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index c9cbab8af4..f19eb30fa1 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1147,7 +1147,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1283,7 +1283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1370,7 +1370,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index 08183ec204..93dfe11598 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -976,7 +976,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1093,7 +1093,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index b4233b458f..ce0a6d5b30 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -304,7 +304,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1125,7 +1125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1251,7 +1251,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1336,7 +1336,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1423,7 +1423,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index 01a8a25ee0..a7e4cf4e62 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1093,7 +1093,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1271,7 +1271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index 1304a7d785..27de39e41f 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1269,7 +1269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1402,7 +1402,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1489,7 +1489,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index 44aaeb2d64..5d29744349 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1099,7 +1099,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index 0ba81d516d..7127753d91 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1020,7 +1020,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1135,7 +1135,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1193,7 +1193,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index c8a2eed1e7..6130764331 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -326,7 +326,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1104,7 +1104,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1209,7 +1209,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1267,7 +1267,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1325,7 +1325,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 05a2106e97..7bbf7e34a6 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -293,7 +293,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1095,7 +1095,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1237,7 +1237,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index 03b76856a1..0590c7706d 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1097,7 +1097,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1230,7 +1230,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1317,7 +1317,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index 818507e75f..96d4c25744 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1094,7 +1094,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1211,7 +1211,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index 4fb3d619d3..2dbcef73a2 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -293,7 +293,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1039,7 +1039,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1142,7 +1142,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1223,7 +1223,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index 0e97460fa7..09d27b2e5b 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -987,7 +987,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1103,7 +1103,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index 87690f9f3e..93c11f137d 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -278,7 +278,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1034,7 +1034,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1174,7 +1174,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1261,7 +1261,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 8534caf7b4..fb5b22a5ff 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -55,7 +55,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1027,7 +1027,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1167,7 +1167,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index a83fd5bbb3..8f75f81feb 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1053,7 +1053,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1168,7 +1168,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1226,7 +1226,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index def00ac790..b64af346b3 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -73,7 +73,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -340,7 +340,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1383,7 +1383,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1769,7 +1769,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1828,7 +1828,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index 9087fe327c..6e4fc4dc1f 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -312,7 +312,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1047,7 +1047,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1152,7 +1152,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index 8a39689455..8f196c8180 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -268,7 +268,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -618,7 +618,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -657,7 +657,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 1dff12620a..cc31b80631 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -815,7 +815,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1053,7 +1053,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index a76e9eb5ca..be0c0f87df 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -294,7 +294,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1071,7 +1071,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1187,7 +1187,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1245,7 +1245,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1291,7 +1291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index 4b90bdaa99..a3f73f0ded 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -88,7 +88,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -358,7 +358,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1135,7 +1135,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1244,7 +1244,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1306,7 +1306,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1364,7 +1364,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index 76094c665f..6a9a68753b 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -319,7 +319,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1095,7 +1095,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1199,7 +1199,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1259,7 +1259,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index 94efc6ec98..705be2f4fb 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -80,7 +80,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -347,7 +347,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1804,7 +1804,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1928,7 +1928,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2002,7 +2002,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2096,7 +2096,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2142,7 +2142,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index fecc903706..913081bad6 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1152,7 +1152,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1273,7 +1273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1331,7 +1331,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1377,7 +1377,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index 619c5228b7..7c5be75dad 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -98,7 +98,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -356,7 +356,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1207,7 +1207,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1320,7 +1320,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1380,7 +1380,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1438,7 +1438,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index 36919d5f51..2d03df52aa 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1129,7 +1129,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1240,7 +1240,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1327,7 +1327,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index 1861674b64..7b041e95ab 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -294,7 +294,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1184,7 +1184,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1299,7 +1299,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1357,7 +1357,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 74efdb9bd3..28a5d33667 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -287,7 +287,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1140,7 +1140,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1256,7 +1256,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1314,7 +1314,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1360,7 +1360,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index 1a5bf7070e..be501884cd 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -375,7 +375,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1246,7 +1246,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1379,7 +1379,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1445,7 +1445,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1532,7 +1532,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index b23882bc21..fee115d8d4 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -302,7 +302,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1069,7 +1069,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1189,7 +1189,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1244,7 +1244,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index a9d63857a6..a119662a56 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -987,7 +987,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1195,7 +1195,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1428,7 +1428,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index 7f981e5dec..5cad7dbcc6 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -999,7 +999,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1118,7 +1118,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1176,7 +1176,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index 8f17d0b778..48927ab995 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -968,7 +968,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1084,7 +1084,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index 2c050c27ee..ad43b4bb27 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1006,7 +1006,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1122,7 +1122,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1180,7 +1180,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index aa020850e5..ea2eb3f51b 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -282,7 +282,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -994,7 +994,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1110,7 +1110,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index fea496c7e6..cdcf46c153 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1146,7 +1146,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1261,7 +1261,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1319,7 +1319,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index 7d0a180ab4..70a22059f0 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1054,7 +1054,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1169,7 +1169,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1227,7 +1227,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index e0c8435dbc..401d247975 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -125,7 +125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -411,7 +411,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1288,7 +1288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1403,7 +1403,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1465,7 +1465,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1523,7 +1523,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-alert-burndown.campaign.g.lock.yml b/.github/workflows/security-alert-burndown.campaign.g.lock.yml index 8062d58238..3796f843a1 100644 --- a/.github/workflows/security-alert-burndown.campaign.g.lock.yml +++ b/.github/workflows/security-alert-burndown.campaign.g.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1433,7 +1433,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1542,7 +1542,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1628,7 +1628,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index 8dc1d0756b..4acba34048 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -310,7 +310,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1062,7 +1062,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1172,7 +1172,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1254,7 +1254,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index 65f863d418..b5042d69ab 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -327,7 +327,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1183,7 +1183,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1288,7 +1288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1346,7 +1346,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1404,7 +1404,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index e8fb436f8e..2ae16e4744 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -277,7 +277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1136,7 +1136,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1250,7 +1250,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index f6d37e9765..68a1cf0b23 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1092,7 +1092,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1212,7 +1212,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1270,7 +1270,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index c2c99fb392..4a05c9fb92 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -296,7 +296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1094,7 +1094,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1215,7 +1215,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1280,7 +1280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1367,7 +1367,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-agent.lock.yml b/.github/workflows/smoke-agent.lock.yml index 198719f3e9..8d76d8c365 100644 --- a/.github/workflows/smoke-agent.lock.yml +++ b/.github/workflows/smoke-agent.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -302,7 +302,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1045,7 +1045,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1169,7 +1169,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1223,7 +1223,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index 268cfe8d10..ae4ee404bf 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -698,7 +698,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2722,7 +2722,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2846,7 +2846,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2904,7 +2904,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2991,7 +2991,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index bba72d83e2..b9b597bb97 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -75,7 +75,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -341,7 +341,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1549,7 +1549,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1671,7 +1671,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1724,7 +1724,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1782,7 +1782,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-copilot-arm.lock.yml b/.github/workflows/smoke-copilot-arm.lock.yml index 13c255ac3a..cb7345833f 100644 --- a/.github/workflows/smoke-copilot-arm.lock.yml +++ b/.github/workflows/smoke-copilot-arm.lock.yml @@ -74,7 +74,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -346,7 +346,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2085,7 +2085,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2211,7 +2211,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2265,7 +2265,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2358,7 +2358,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index ed75512f88..1a2cf3e641 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -349,7 +349,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2200,7 +2200,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2326,7 +2326,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2380,7 +2380,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -2473,7 +2473,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-create-cross-repo-pr.lock.yml b/.github/workflows/smoke-create-cross-repo-pr.lock.yml index c541d8ed89..58e68cb522 100644 --- a/.github/workflows/smoke-create-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-create-cross-repo-pr.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -310,7 +310,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1179,7 +1179,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1317,7 +1317,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1374,7 +1374,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-gemini.lock.yml b/.github/workflows/smoke-gemini.lock.yml index bcb03e4b71..cb6b0c53f4 100644 --- a/.github/workflows/smoke-gemini.lock.yml +++ b/.github/workflows/smoke-gemini.lock.yml @@ -75,7 +75,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -335,7 +335,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1268,7 +1268,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1390,7 +1390,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1443,7 +1443,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1501,7 +1501,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-multi-pr.lock.yml b/.github/workflows/smoke-multi-pr.lock.yml index 36d3d47f0c..9dec6f61cf 100644 --- a/.github/workflows/smoke-multi-pr.lock.yml +++ b/.github/workflows/smoke-multi-pr.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -319,7 +319,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1122,7 +1122,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1261,7 +1261,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1316,7 +1316,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index 4c169710fd..6b876a991b 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -318,7 +318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1555,7 +1555,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1694,7 +1694,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1751,7 +1751,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index 28f8c2731d..0857b64597 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -314,7 +314,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1142,7 +1142,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1265,7 +1265,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1318,7 +1318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index 9a8761283c..8617b64406 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -303,7 +303,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1020,7 +1020,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1143,7 +1143,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1194,7 +1194,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-update-cross-repo-pr.lock.yml b/.github/workflows/smoke-update-cross-repo-pr.lock.yml index ddaed11344..a4eeced7bb 100644 --- a/.github/workflows/smoke-update-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-update-cross-repo-pr.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -317,7 +317,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1181,7 +1181,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1305,7 +1305,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1362,7 +1362,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1451,7 +1451,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml index 6c2091feb6..4bfe5eceb8 100644 --- a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml +++ b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -318,7 +318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1051,7 +1051,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1151,7 +1151,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1201,7 +1201,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-workflow-call.lock.yml b/.github/workflows/smoke-workflow-call.lock.yml index 5a5fdb9f28..f3e944476e 100644 --- a/.github/workflows/smoke-workflow-call.lock.yml +++ b/.github/workflows/smoke-workflow-call.lock.yml @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -298,7 +298,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1010,7 +1010,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1111,7 +1111,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1164,7 +1164,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index 9e70fe5dd8..9d348c27f9 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -311,7 +311,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1143,7 +1143,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1260,7 +1260,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1318,7 +1318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1364,7 +1364,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index 77a4807db0..cbe9554131 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1128,7 +1128,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1243,7 +1243,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1301,7 +1301,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index e1387b767f..d5dafd5db5 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1082,7 +1082,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1196,7 +1196,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1254,7 +1254,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index c76f426557..00dc0b92c8 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -265,7 +265,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1083,7 +1083,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1200,7 +1200,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index df1fa21b74..4f46c5f9bf 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1028,7 +1028,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1143,7 +1143,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1247,7 +1247,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index a11dd429db..c48c37f998 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -306,7 +306,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1340,7 +1340,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1429,7 +1429,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1516,7 +1516,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1562,7 +1562,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index 1a274a53c2..8c54b9a19c 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -980,7 +980,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1096,7 +1096,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-create-pr-error-handling.lock.yml b/.github/workflows/test-create-pr-error-handling.lock.yml index 44dc9db72e..0ee6d66d73 100644 --- a/.github/workflows/test-create-pr-error-handling.lock.yml +++ b/.github/workflows/test-create-pr-error-handling.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1069,7 +1069,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1202,7 +1202,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1289,7 +1289,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-dispatcher.lock.yml b/.github/workflows/test-dispatcher.lock.yml index 6f4ea68cd8..7bfa8de094 100644 --- a/.github/workflows/test-dispatcher.lock.yml +++ b/.github/workflows/test-dispatcher.lock.yml @@ -50,7 +50,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -258,7 +258,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -910,7 +910,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1022,7 +1022,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-project-url-default.lock.yml b/.github/workflows/test-project-url-default.lock.yml index cd47936639..4cd9e233e0 100644 --- a/.github/workflows/test-project-url-default.lock.yml +++ b/.github/workflows/test-project-url-default.lock.yml @@ -50,7 +50,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -257,7 +257,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1169,7 +1169,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1281,7 +1281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-workflow.lock.yml b/.github/workflows/test-workflow.lock.yml index 2b807dc2e1..aa8cf34868 100644 --- a/.github/workflows/test-workflow.lock.yml +++ b/.github/workflows/test-workflow.lock.yml @@ -55,7 +55,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -244,7 +244,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index e4480b3d9c..948403a211 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -78,7 +78,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -323,7 +323,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1141,7 +1141,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1262,7 +1262,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1326,7 +1326,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index 20a3fcffad..243d99c191 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1064,7 +1064,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1179,7 +1179,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index f2d87c31c6..071c0ec51f 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1023,7 +1023,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1144,7 +1144,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1209,7 +1209,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index 8c9f1c7505..e2f4691ec2 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -74,7 +74,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -330,7 +330,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1332,7 +1332,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1451,7 +1451,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1517,7 +1517,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1604,7 +1604,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1650,7 +1650,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index 9d1bf3217d..ddf38220a2 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -278,7 +278,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1020,7 +1020,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1135,7 +1135,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-editors-health-check.lock.yml b/.github/workflows/weekly-editors-health-check.lock.yml index a5f48246ad..f1e57f0d1b 100644 --- a/.github/workflows/weekly-editors-health-check.lock.yml +++ b/.github/workflows/weekly-editors-health-check.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1078,7 +1078,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1218,7 +1218,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1307,7 +1307,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index 922cdfcfb0..7098e06d01 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -290,7 +290,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1051,7 +1051,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1171,7 +1171,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1229,7 +1229,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1275,7 +1275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index 83188968f2..ee90008be7 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -270,7 +270,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -981,7 +981,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1121,7 +1121,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index 9c2dd7775f..ea0a5c15eb 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -309,7 +309,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1125,7 +1125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1229,7 +1229,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1296,7 +1296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1372,7 +1372,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index a3d67e1d4c..89544ee441 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1226,7 +1226,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1330,7 +1330,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1369,7 +1369,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1455,7 +1455,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 4bf108274f..8aead1b1ff 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1058,7 +1058,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1178,7 +1178,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index d5756003d8..0c1af3d599 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -273,7 +273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1071,7 +1071,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false @@ -1189,7 +1189,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: bf56fc9 + ref: 45b92cc sparse-checkout: | actions persist-credentials: false From 195b6b42ab988035dff710822b7f0cf628b53875 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Mar 2026 03:56:49 +0000 Subject: [PATCH 5/5] fix: update WASM golden files with repository field in Checkout actions folder step Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/ace-editor.lock.yml | 6 +++--- .../workflows/agent-performance-analyzer.lock.yml | 12 ++++++------ .github/workflows/agent-persona-explorer.lock.yml | 12 ++++++------ .github/workflows/agentics-maintenance.yml | 2 +- .github/workflows/ai-moderator.lock.yml | 12 ++++++------ .github/workflows/archie.lock.yml | 10 +++++----- .github/workflows/artifacts-summary.lock.yml | 8 ++++---- .github/workflows/audit-workflows.lock.yml | 14 +++++++------- .github/workflows/auto-triage-issues.lock.yml | 10 +++++----- .github/workflows/blog-auditor.lock.yml | 8 ++++---- .github/workflows/bot-detection.lock.yml | 8 ++++---- .github/workflows/brave.lock.yml | 10 +++++----- .github/workflows/breaking-change-checker.lock.yml | 10 +++++----- .github/workflows/changeset.lock.yml | 10 +++++----- .github/workflows/chroma-issue-indexer.lock.yml | 4 ++-- .github/workflows/ci-coach.lock.yml | 10 +++++----- .github/workflows/ci-doctor.lock.yml | 12 ++++++------ .../claude-code-user-docs-review.lock.yml | 10 +++++----- .github/workflows/cli-consistency-checker.lock.yml | 8 ++++---- .github/workflows/cli-version-checker.lock.yml | 10 +++++----- .github/workflows/cloclo.lock.yml | 12 ++++++------ .github/workflows/code-scanning-fixer.lock.yml | 14 +++++++------- .github/workflows/code-simplifier.lock.yml | 10 +++++----- .../codex-github-remote-mcp-test.lock.yml | 4 ++-- .github/workflows/commit-changes-analyzer.lock.yml | 8 ++++---- .github/workflows/constraint-solving-potd.lock.yml | 10 +++++----- .github/workflows/contribution-check.lock.yml | 8 ++++---- .github/workflows/copilot-agent-analysis.lock.yml | 12 ++++++------ .../workflows/copilot-cli-deep-research.lock.yml | 10 +++++----- .../workflows/copilot-pr-merged-report.lock.yml | 10 +++++----- .github/workflows/copilot-pr-nlp-analysis.lock.yml | 14 +++++++------- .../workflows/copilot-pr-prompt-analysis.lock.yml | 12 ++++++------ .../workflows/copilot-session-insights.lock.yml | 14 +++++++------- .github/workflows/craft.lock.yml | 10 +++++----- .../workflows/daily-architecture-diagram.lock.yml | 10 +++++----- .../workflows/daily-assign-issue-to-user.lock.yml | 8 ++++---- .github/workflows/daily-choice-test.lock.yml | 8 ++++---- .github/workflows/daily-cli-performance.lock.yml | 10 +++++----- .github/workflows/daily-cli-tools-tester.lock.yml | 8 ++++---- .github/workflows/daily-code-metrics.lock.yml | 14 +++++++------- .github/workflows/daily-compiler-quality.lock.yml | 10 +++++----- .../workflows/daily-copilot-token-report.lock.yml | 14 +++++++------- .github/workflows/daily-doc-healer.lock.yml | 10 +++++----- .github/workflows/daily-doc-updater.lock.yml | 10 +++++----- .github/workflows/daily-file-diet.lock.yml | 10 +++++----- .github/workflows/daily-firewall-report.lock.yml | 12 ++++++------ .github/workflows/daily-function-namer.lock.yml | 10 +++++----- .github/workflows/daily-issues-report.lock.yml | 14 +++++++------- .../workflows/daily-malicious-code-scan.lock.yml | 8 ++++---- .../daily-mcp-concurrency-analysis.lock.yml | 10 +++++----- .../daily-multi-device-docs-tester.lock.yml | 10 +++++----- .github/workflows/daily-news.lock.yml | 14 +++++++------- .../workflows/daily-observability-report.lock.yml | 10 +++++----- .../workflows/daily-performance-summary.lock.yml | 12 ++++++------ .github/workflows/daily-regulatory.lock.yml | 8 ++++---- .../daily-rendering-scripts-verifier.lock.yml | 12 ++++++------ .github/workflows/daily-repo-chronicle.lock.yml | 12 ++++++------ .../workflows/daily-safe-output-optimizer.lock.yml | 12 ++++++------ .../daily-safe-outputs-conformance.lock.yml | 8 ++++---- .github/workflows/daily-secrets-analysis.lock.yml | 8 ++++---- .github/workflows/daily-security-red-team.lock.yml | 8 ++++---- .github/workflows/daily-semgrep-scan.lock.yml | 8 ++++---- .../workflows/daily-syntax-error-quality.lock.yml | 8 ++++---- .../daily-team-evolution-insights.lock.yml | 8 ++++---- .github/workflows/daily-team-status.lock.yml | 10 +++++----- .../daily-testify-uber-super-expert.lock.yml | 12 ++++++------ .github/workflows/daily-workflow-updater.lock.yml | 8 ++++---- .github/workflows/dead-code-remover.lock.yml | 12 ++++++------ .github/workflows/deep-report.lock.yml | 14 +++++++------- .github/workflows/delight.lock.yml | 10 +++++----- .github/workflows/dependabot-burner.lock.yml | 10 +++++----- .github/workflows/dependabot-go-checker.lock.yml | 8 ++++---- .github/workflows/dev-hawk.lock.yml | 10 +++++----- .github/workflows/dev.lock.yml | 8 ++++---- .../workflows/developer-docs-consolidator.lock.yml | 12 ++++++------ .github/workflows/dictation-prompt.lock.yml | 8 ++++---- .github/workflows/discussion-task-miner.lock.yml | 10 +++++----- .github/workflows/docs-noob-tester.lock.yml | 10 +++++----- .github/workflows/draft-pr-cleanup.lock.yml | 8 ++++---- .github/workflows/duplicate-code-detector.lock.yml | 8 ++++---- .../workflows/example-permissions-warning.lock.yml | 4 ++-- .../workflows/example-workflow-analyzer.lock.yml | 8 ++++---- .github/workflows/firewall-escape.lock.yml | 14 +++++++------- .github/workflows/firewall.lock.yml | 4 ++-- .github/workflows/functional-pragmatist.lock.yml | 8 ++++---- .../github-mcp-structural-analysis.lock.yml | 12 ++++++------ .github/workflows/github-mcp-tools-report.lock.yml | 10 +++++----- .../workflows/github-remote-mcp-auth-test.lock.yml | 8 ++++---- .github/workflows/glossary-maintainer.lock.yml | 12 ++++++------ .github/workflows/go-fan.lock.yml | 10 +++++----- .github/workflows/go-logger.lock.yml | 10 +++++----- .github/workflows/go-pattern-detector.lock.yml | 8 ++++---- .github/workflows/gpclean.lock.yml | 10 +++++----- .github/workflows/grumpy-reviewer.lock.yml | 12 ++++++------ .github/workflows/hourly-ci-cleaner.lock.yml | 8 ++++---- .github/workflows/instructions-janitor.lock.yml | 10 +++++----- .github/workflows/issue-arborist.lock.yml | 8 ++++---- .github/workflows/issue-monster.lock.yml | 10 +++++----- .github/workflows/issue-triage-agent.lock.yml | 8 ++++---- .github/workflows/jsweep.lock.yml | 10 +++++----- .github/workflows/layout-spec-maintainer.lock.yml | 8 ++++---- .github/workflows/lockfile-stats.lock.yml | 10 +++++----- .github/workflows/mcp-inspector.lock.yml | 10 +++++----- .github/workflows/mergefest.lock.yml | 10 +++++----- .github/workflows/metrics-collector.lock.yml | 8 ++++---- .github/workflows/notion-issue-summary.lock.yml | 8 ++++---- .github/workflows/org-health-report.lock.yml | 12 ++++++------ .github/workflows/pdf-summary.lock.yml | 12 ++++++------ .github/workflows/plan.lock.yml | 10 +++++----- .github/workflows/poem-bot.lock.yml | 14 +++++++------- .github/workflows/portfolio-analyst.lock.yml | 12 ++++++------ .github/workflows/pr-nitpick-reviewer.lock.yml | 12 ++++++------ .github/workflows/pr-triage-agent.lock.yml | 10 +++++----- .../workflows/prompt-clustering-analysis.lock.yml | 10 +++++----- .github/workflows/python-data-charts.lock.yml | 12 ++++++------ .github/workflows/q.lock.yml | 12 ++++++------ .github/workflows/refiner.lock.yml | 10 +++++----- .github/workflows/release.lock.yml | 10 +++++----- .github/workflows/repo-audit-analyzer.lock.yml | 10 +++++----- .github/workflows/repo-tree-map.lock.yml | 8 ++++---- .../workflows/repository-quality-improver.lock.yml | 10 +++++----- .github/workflows/research.lock.yml | 8 ++++---- .github/workflows/safe-output-health.lock.yml | 10 +++++----- .../workflows/schema-consistency-checker.lock.yml | 10 +++++----- .github/workflows/scout.lock.yml | 12 ++++++------ .../security-alert-burndown.campaign.g.lock.yml | 10 +++++----- .github/workflows/security-compliance.lock.yml | 10 +++++----- .github/workflows/security-review.lock.yml | 12 ++++++------ .../workflows/semantic-function-refactor.lock.yml | 8 ++++---- .github/workflows/sergo.lock.yml | 10 +++++----- .github/workflows/slide-deck-maintainer.lock.yml | 12 ++++++------ .github/workflows/smoke-agent.lock.yml | 10 +++++----- .github/workflows/smoke-claude.lock.yml | 12 ++++++------ .github/workflows/smoke-codex.lock.yml | 12 ++++++------ .github/workflows/smoke-copilot-arm.lock.yml | 12 ++++++------ .github/workflows/smoke-copilot.lock.yml | 12 ++++++------ .../workflows/smoke-create-cross-repo-pr.lock.yml | 10 +++++----- .github/workflows/smoke-gemini.lock.yml | 12 ++++++------ .github/workflows/smoke-multi-pr.lock.yml | 10 +++++----- .github/workflows/smoke-project.lock.yml | 10 +++++----- .github/workflows/smoke-temporary-id.lock.yml | 10 +++++----- .github/workflows/smoke-test-tools.lock.yml | 10 +++++----- .../workflows/smoke-update-cross-repo-pr.lock.yml | 12 ++++++------ .../smoke-workflow-call-with-inputs.lock.yml | 10 +++++----- .github/workflows/smoke-workflow-call.lock.yml | 10 +++++----- .github/workflows/stale-repo-identifier.lock.yml | 12 ++++++------ .github/workflows/static-analysis-report.lock.yml | 10 +++++----- .github/workflows/step-name-alignment.lock.yml | 10 +++++----- .github/workflows/sub-issue-closer.lock.yml | 8 ++++---- .github/workflows/super-linter.lock.yml | 10 +++++----- .github/workflows/technical-doc-writer.lock.yml | 14 +++++++------- .github/workflows/terminal-stylist.lock.yml | 8 ++++---- .../test-create-pr-error-handling.lock.yml | 10 +++++----- .github/workflows/test-dispatcher.lock.yml | 8 ++++---- .../workflows/test-project-url-default.lock.yml | 8 ++++---- .github/workflows/test-workflow.lock.yml | 4 ++-- .github/workflows/tidy.lock.yml | 10 +++++----- .github/workflows/typist.lock.yml | 8 ++++---- .github/workflows/ubuntu-image-analyzer.lock.yml | 10 +++++----- .github/workflows/unbloat-docs.lock.yml | 14 +++++++------- .github/workflows/video-analyzer.lock.yml | 8 ++++---- .../workflows/weekly-editors-health-check.lock.yml | 10 +++++----- .github/workflows/weekly-issue-summary.lock.yml | 12 ++++++------ .../weekly-safe-outputs-spec-review.lock.yml | 8 ++++---- .github/workflows/workflow-generator.lock.yml | 12 ++++++------ .github/workflows/workflow-health-manager.lock.yml | 12 ++++++------ .github/workflows/workflow-normalizer.lock.yml | 8 ++++---- .../workflows/workflow-skill-extractor.lock.yml | 8 ++++---- .../basic-copilot.golden | 3 +++ .../smoke-copilot.golden | 3 +++ .../with-imports.golden | 3 +++ 171 files changed, 846 insertions(+), 837 deletions(-) diff --git a/.github/workflows/ace-editor.lock.yml b/.github/workflows/ace-editor.lock.yml index 98f5ba6848..39fb27b7ce 100644 --- a/.github/workflows/ace-editor.lock.yml +++ b/.github/workflows/ace-editor.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -563,7 +563,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index eaf41302cc..6a04d19318 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -287,7 +287,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1226,7 +1226,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1331,7 +1331,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1370,7 +1370,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1456,7 +1456,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index 2e3f81f839..748155e715 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1067,7 +1067,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1169,7 +1169,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1216,7 +1216,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1274,7 +1274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/agentics-maintenance.yml b/.github/workflows/agentics-maintenance.yml index 1d99cc8307..2ebef2b753 100644 --- a/.github/workflows/agentics-maintenance.yml +++ b/.github/workflows/agentics-maintenance.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index 574d4af51e..cea6a23106 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -78,7 +78,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -324,7 +324,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -970,7 +970,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1070,7 +1070,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1149,7 +1149,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1209,7 +1209,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index da921bde93..3a1e067819 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -334,7 +334,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1038,7 +1038,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1144,7 +1144,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1206,7 +1206,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index 231e2374cf..7ab2f57ce9 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -970,7 +970,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1085,7 +1085,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index d56d37eacd..e726f0f082 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -304,7 +304,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1257,7 +1257,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1372,7 +1372,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1454,7 +1454,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1512,7 +1512,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1558,7 +1558,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index 1dd5d6ebe8..96bebf7923 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1048,7 +1048,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1150,7 +1150,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index e432c6f618..82ee0c11ef 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -278,7 +278,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1091,7 +1091,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1211,7 +1211,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index cd872f2a37..8e3016d3a3 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -55,7 +55,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1006,7 +1006,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1919,7 +1919,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/brave.lock.yml b/.github/workflows/brave.lock.yml index fbcc28e46b..4a4eb23d0d 100644 --- a/.github/workflows/brave.lock.yml +++ b/.github/workflows/brave.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -318,7 +318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1026,7 +1026,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1129,7 +1129,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1191,7 +1191,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index 00d4b8dc30..08814312b9 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -273,7 +273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1013,7 +1013,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1117,7 +1117,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1180,7 +1180,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index afe7077b5b..10f1280e6b 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -331,7 +331,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1071,7 +1071,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1176,7 +1176,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1227,7 +1227,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/chroma-issue-indexer.lock.yml b/.github/workflows/chroma-issue-indexer.lock.yml index 63589aee0b..378bc05cc8 100644 --- a/.github/workflows/chroma-issue-indexer.lock.yml +++ b/.github/workflows/chroma-issue-indexer.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -258,7 +258,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index 2898520e8b..d5af988f85 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -294,7 +294,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1075,7 +1075,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1214,7 +1214,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1301,7 +1301,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index 153a086a6b..30713ee506 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -314,7 +314,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1240,7 +1240,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1350,7 +1350,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1418,7 +1418,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1476,7 +1476,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 583f1f2fc4..6d6da124c3 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1059,7 +1059,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1179,7 +1179,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1237,7 +1237,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index 3246095674..6d5e823d2a 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -262,7 +262,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -982,7 +982,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1096,7 +1096,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index 917773e6ba..36f901bf67 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1085,7 +1085,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1199,7 +1199,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1257,7 +1257,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index 108b69ca34..d0a52afe9e 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -390,7 +390,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1396,7 +1396,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1528,7 +1528,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1594,7 +1594,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1681,7 +1681,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index 851eaa57d0..b2308fd408 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1101,7 +1101,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1220,7 +1220,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1272,7 +1272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1357,7 +1357,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1444,7 +1444,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index c90b21cd05..1d811b00b6 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -282,7 +282,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1006,7 +1006,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1127,7 +1127,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1192,7 +1192,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index eb18de10fb..fdfc59dd7c 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -242,7 +242,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index 157475580b..dfa3b637c0 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -277,7 +277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1033,7 +1033,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1148,7 +1148,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/constraint-solving-potd.lock.yml b/.github/workflows/constraint-solving-potd.lock.yml index ef91a1bec1..e213d1fc17 100644 --- a/.github/workflows/constraint-solving-potd.lock.yml +++ b/.github/workflows/constraint-solving-potd.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -971,7 +971,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1086,7 +1086,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1144,7 +1144,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index afe6d1e2a0..e912a1ed32 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1084,7 +1084,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1203,7 +1203,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index e4f24f80b9..3b2844cb9a 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -306,7 +306,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1125,7 +1125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1236,7 +1236,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1317,7 +1317,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1375,7 +1375,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index 364c7a247a..d0f7eae0a7 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -286,7 +286,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1042,7 +1042,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1153,7 +1153,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1234,7 +1234,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index 0c76c758d9..17fc6209d8 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -292,7 +292,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1140,7 +1140,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1255,7 +1255,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1313,7 +1313,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index 3b22a8ce6c..1382e0f4ae 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -308,7 +308,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1146,7 +1146,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1257,7 +1257,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1338,7 +1338,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1396,7 +1396,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1442,7 +1442,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index 7529dad7a6..f49481a196 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -303,7 +303,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1062,7 +1062,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1173,7 +1173,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1254,7 +1254,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1312,7 +1312,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index 71b9e37da4..81213ce794 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -321,7 +321,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1212,7 +1212,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1323,7 +1323,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1404,7 +1404,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1462,7 +1462,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1508,7 +1508,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index 9e04aa1e36..faf774c710 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -311,7 +311,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1069,7 +1069,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1173,7 +1173,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1239,7 +1239,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-architecture-diagram.lock.yml b/.github/workflows/daily-architecture-diagram.lock.yml index 3f8ebba16b..2bf9a1ba35 100644 --- a/.github/workflows/daily-architecture-diagram.lock.yml +++ b/.github/workflows/daily-architecture-diagram.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -277,7 +277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1101,7 +1101,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1236,7 +1236,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1323,7 +1323,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 865bf6d82b..c31d046c9d 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -259,7 +259,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1015,7 +1015,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1132,7 +1132,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index 2feb102672..4685732882 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -263,7 +263,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -987,7 +987,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1102,7 +1102,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index 2af3702e2c..29a6f1d847 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1247,7 +1247,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1360,7 +1360,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1447,7 +1447,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index 653a09175d..6e9e4ed8f3 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1061,7 +1061,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1176,7 +1176,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index 844cd7959a..7c5847da17 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -302,7 +302,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1186,7 +1186,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1301,7 +1301,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1383,7 +1383,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1441,7 +1441,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1487,7 +1487,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index 715d3debcd..996083c27a 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1025,7 +1025,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1145,7 +1145,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1203,7 +1203,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-copilot-token-report.lock.yml b/.github/workflows/daily-copilot-token-report.lock.yml index 4b8334711c..61af55d90b 100644 --- a/.github/workflows/daily-copilot-token-report.lock.yml +++ b/.github/workflows/daily-copilot-token-report.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -296,7 +296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1154,7 +1154,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1269,7 +1269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1351,7 +1351,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1409,7 +1409,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1455,7 +1455,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-doc-healer.lock.yml b/.github/workflows/daily-doc-healer.lock.yml index 3595c4ebab..cf6075327f 100644 --- a/.github/workflows/daily-doc-healer.lock.yml +++ b/.github/workflows/daily-doc-healer.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -282,7 +282,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1191,7 +1191,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1332,7 +1332,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1432,7 +1432,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index 5cf29ae5c4..3d7e22f7c5 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1103,7 +1103,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1242,7 +1242,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1329,7 +1329,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index f6acfc5b05..db5b386063 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1031,7 +1031,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1134,7 +1134,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1196,7 +1196,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index a4e4f92584..e4164bd21f 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1143,7 +1143,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1264,7 +1264,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1322,7 +1322,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1368,7 +1368,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-function-namer.lock.yml b/.github/workflows/daily-function-namer.lock.yml index 6ee02754c3..42c4557555 100644 --- a/.github/workflows/daily-function-namer.lock.yml +++ b/.github/workflows/daily-function-namer.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1110,7 +1110,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1229,7 +1229,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1287,7 +1287,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index fbbb5f0cdf..69890592fb 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -308,7 +308,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1147,7 +1147,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1252,7 +1252,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1300,7 +1300,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1358,7 +1358,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1404,7 +1404,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index 844e0f0cd0..94afac6b0c 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -266,7 +266,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -880,7 +880,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -997,7 +997,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index f73b8117a8..bfa82bccc8 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1086,7 +1086,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1207,7 +1207,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1277,7 +1277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index 38397f872c..215081d459 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1178,7 +1178,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1297,7 +1297,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1357,7 +1357,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index 04e39af3b2..cb9ae19326 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -307,7 +307,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1215,7 +1215,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1330,7 +1330,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1412,7 +1412,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1470,7 +1470,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1516,7 +1516,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index e6fe87a0c9..bb181f9d11 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1104,7 +1104,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1209,7 +1209,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1257,7 +1257,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index 74a5f79b39..071795f666 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -293,7 +293,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1627,7 +1627,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1748,7 +1748,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1806,7 +1806,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1852,7 +1852,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index f1f1bf977b..5d500bfa4d 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1524,7 +1524,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1645,7 +1645,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-rendering-scripts-verifier.lock.yml b/.github/workflows/daily-rendering-scripts-verifier.lock.yml index 3a1bf27751..881b627843 100644 --- a/.github/workflows/daily-rendering-scripts-verifier.lock.yml +++ b/.github/workflows/daily-rendering-scripts-verifier.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -289,7 +289,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1187,7 +1187,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1307,7 +1307,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1372,7 +1372,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1459,7 +1459,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index 8e9c480a69..49f583541f 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1074,7 +1074,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1194,7 +1194,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1252,7 +1252,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1298,7 +1298,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index 517567a0bb..68e0d9ff17 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -289,7 +289,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1174,7 +1174,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1273,7 +1273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1334,7 +1334,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1392,7 +1392,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index 1153cb1dea..66a14d75a9 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1048,7 +1048,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1167,7 +1167,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index 8f1b45e44a..79a485cde2 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -270,7 +270,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1038,7 +1038,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1158,7 +1158,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index da636e221e..ad9eba5430 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1052,7 +1052,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1171,7 +1171,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 41f5851d17..c742f21c34 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -273,7 +273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1024,7 +1024,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1137,7 +1137,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index 8743478a85..1a5726cbce 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1011,7 +1011,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1130,7 +1130,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index 2d28d2ac28..5651472efa 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1030,7 +1030,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1150,7 +1150,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index b74a769e62..fb2404f4e0 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -67,7 +67,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1002,7 +1002,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1114,7 +1114,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1165,7 +1165,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index 1443b5e38b..fb1a8e7b7d 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -296,7 +296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1080,7 +1080,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1187,7 +1187,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1239,7 +1239,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1322,7 +1322,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index 73b3884e67..ae838c44eb 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -263,7 +263,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -988,7 +988,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1127,7 +1127,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dead-code-remover.lock.yml b/.github/workflows/dead-code-remover.lock.yml index cdf93820fd..420f2d0c97 100644 --- a/.github/workflows/dead-code-remover.lock.yml +++ b/.github/workflows/dead-code-remover.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1034,7 +1034,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1149,7 +1149,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1300,7 +1300,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 63e5c7c981..b99e23f278 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -305,7 +305,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1252,7 +1252,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1367,7 +1367,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1451,7 +1451,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1509,7 +1509,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1555,7 +1555,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index 1b3a6c00cc..f62dcf785f 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1130,7 +1130,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1246,7 +1246,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1331,7 +1331,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index 51c074ccf5..86e4654a78 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -994,7 +994,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1094,7 +1094,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1142,7 +1142,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index a4ecf125ae..1f8f3d0b9b 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1043,7 +1043,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1158,7 +1158,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index f7a2c9f1ec..f80d36d1f3 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -297,7 +297,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1075,7 +1075,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1176,7 +1176,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1227,7 +1227,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index 5d458049e2..63bbaa14f5 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -259,7 +259,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -979,7 +979,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1093,7 +1093,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index e30a1f97ea..da907cab88 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -301,7 +301,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1240,7 +1240,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1367,7 +1367,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1453,7 +1453,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1540,7 +1540,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index eeb236bf1d..0fea120aac 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -994,7 +994,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1127,7 +1127,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/discussion-task-miner.lock.yml b/.github/workflows/discussion-task-miner.lock.yml index 6aa57ad084..965593bdfa 100644 --- a/.github/workflows/discussion-task-miner.lock.yml +++ b/.github/workflows/discussion-task-miner.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -289,7 +289,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1114,7 +1114,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1228,7 +1228,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1316,7 +1316,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index 01e823e2eb..2c5fd158e1 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1033,7 +1033,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1148,7 +1148,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1208,7 +1208,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index 42c8538d65..82aaf4d49c 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -261,7 +261,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1052,7 +1052,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1170,7 +1170,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index fed0c6e8b7..c635a87610 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1020,7 +1020,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1134,7 +1134,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index 397d19d227..998c31fa71 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -242,7 +242,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index a83f463787..e5f8972793 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1093,7 +1093,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1208,7 +1208,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index 93bb3bd456..fe978bbd7f 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -306,7 +306,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1057,7 +1057,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1198,7 +1198,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1237,7 +1237,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1318,7 +1318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1376,7 +1376,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index 309134080e..4c746c979e 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -244,7 +244,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index 38b2ea8ea6..38ec009dbf 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1000,7 +1000,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1140,7 +1140,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index 6c8e65837d..a69792d4c8 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1137,7 +1137,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1252,7 +1252,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1310,7 +1310,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1356,7 +1356,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index b9172f06af..20a64e942b 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1149,7 +1149,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1285,7 +1285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1372,7 +1372,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index d7d10b1cf4..6dd261716a 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -978,7 +978,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1095,7 +1095,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index ef2ae07b5b..d912cdd9b4 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -304,7 +304,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1127,7 +1127,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1253,7 +1253,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1338,7 +1338,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1425,7 +1425,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index 5c96316a03..bc660e6c30 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1095,7 +1095,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1215,7 +1215,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1273,7 +1273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index 6d7346ea98..e19fae5dbc 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1271,7 +1271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1404,7 +1404,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1491,7 +1491,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index 0a8b3dc801..47b6fd5aeb 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1101,7 +1101,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1215,7 +1215,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index 35f506b4cb..4a93f94ded 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1022,7 +1022,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1137,7 +1137,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1195,7 +1195,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index 26c4bdc5da..11add11955 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -326,7 +326,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1106,7 +1106,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1211,7 +1211,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1269,7 +1269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1327,7 +1327,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 665870640a..ee88dca676 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -293,7 +293,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1097,7 +1097,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1239,7 +1239,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index 9f38d660c1..ed73ae8300 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1099,7 +1099,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1232,7 +1232,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1319,7 +1319,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index 8a800db8d5..fb338f4cf1 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1096,7 +1096,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1213,7 +1213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index ac18b6f835..470d29420c 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -293,7 +293,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1041,7 +1041,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1144,7 +1144,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1225,7 +1225,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index 106c6492b0..32d9b05c55 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -989,7 +989,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1105,7 +1105,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index 89b381100b..0e07351bc9 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -278,7 +278,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1036,7 +1036,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1176,7 +1176,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1263,7 +1263,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 90178bfdd8..b1c11abaac 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -55,7 +55,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1029,7 +1029,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1169,7 +1169,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index 2a4515b7e2..79d2484123 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1055,7 +1055,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1170,7 +1170,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1228,7 +1228,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index 7c5f32d907..7132db360a 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -73,7 +73,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -340,7 +340,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1385,7 +1385,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1771,7 +1771,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1830,7 +1830,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index ecc0bcbe47..d9cdf3453d 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -312,7 +312,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1049,7 +1049,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1154,7 +1154,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1215,7 +1215,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index 8f196c8180..a85611b9bb 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -268,7 +268,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -618,7 +618,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -657,7 +657,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 873294918a..7d9794468a 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -817,7 +817,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1055,7 +1055,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index 6f8b553d32..fef10d5709 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -294,7 +294,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1073,7 +1073,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1189,7 +1189,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1247,7 +1247,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1293,7 +1293,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index df26c2e073..2cb860ba46 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -88,7 +88,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -358,7 +358,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1137,7 +1137,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1246,7 +1246,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1308,7 +1308,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1366,7 +1366,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index f634e9fed4..018c5de974 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -319,7 +319,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1097,7 +1097,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1201,7 +1201,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1261,7 +1261,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index 56c2b91adf..8a7bad17e1 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -80,7 +80,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -347,7 +347,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1806,7 +1806,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1930,7 +1930,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2004,7 +2004,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2098,7 +2098,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2144,7 +2144,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index 1cc1a8c01e..f4c0fe8a5a 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1154,7 +1154,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1275,7 +1275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1333,7 +1333,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1379,7 +1379,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index 401d568b90..93994736cd 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -98,7 +98,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -356,7 +356,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1209,7 +1209,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1322,7 +1322,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1382,7 +1382,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1440,7 +1440,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index b9c989bca4..ad001c011a 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -283,7 +283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1131,7 +1131,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1242,7 +1242,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1329,7 +1329,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index 4be8cbdb13..43f79982b2 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -294,7 +294,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1186,7 +1186,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1301,7 +1301,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1359,7 +1359,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 9291d9c97c..03f754fb9a 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -287,7 +287,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1142,7 +1142,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1258,7 +1258,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1316,7 +1316,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1362,7 +1362,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index e99f4d1c09..0e5e864497 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -375,7 +375,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1248,7 +1248,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1381,7 +1381,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1447,7 +1447,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1534,7 +1534,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index 2ac2aab91c..532803288f 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -302,7 +302,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1071,7 +1071,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1191,7 +1191,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1246,7 +1246,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index 185603f1d4..ff189e9af3 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -281,7 +281,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -989,7 +989,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1197,7 +1197,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1430,7 +1430,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index 57a73f455c..a45b6e5fae 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1001,7 +1001,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1120,7 +1120,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1178,7 +1178,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index f8a6d6a8ca..bf8d22a713 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -970,7 +970,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1086,7 +1086,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index 60aad0b5fd..92bb7d91a3 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1008,7 +1008,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1124,7 +1124,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1182,7 +1182,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index 4e78e62658..a16fb6d07a 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -282,7 +282,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -996,7 +996,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1112,7 +1112,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index c958e4f86a..4bc49bc5c4 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -284,7 +284,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1148,7 +1148,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1263,7 +1263,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1321,7 +1321,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index 2f4ef6261f..ea43bdf666 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -279,7 +279,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1056,7 +1056,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1171,7 +1171,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1229,7 +1229,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index b2fbed9e8a..f71f97e70d 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -125,7 +125,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -411,7 +411,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1290,7 +1290,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1405,7 +1405,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1467,7 +1467,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1525,7 +1525,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-alert-burndown.campaign.g.lock.yml b/.github/workflows/security-alert-burndown.campaign.g.lock.yml index da5e02c5e5..b9e04b8534 100644 --- a/.github/workflows/security-alert-burndown.campaign.g.lock.yml +++ b/.github/workflows/security-alert-burndown.campaign.g.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1435,7 +1435,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1544,7 +1544,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1630,7 +1630,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index af81decbf5..a976a02623 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -310,7 +310,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1064,7 +1064,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1174,7 +1174,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1256,7 +1256,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index 27da4bf7bd..3c37550397 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -327,7 +327,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1185,7 +1185,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1290,7 +1290,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1348,7 +1348,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1406,7 +1406,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index 600bd85725..11c6b86b70 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -277,7 +277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1138,7 +1138,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1252,7 +1252,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index 081d01f58c..91759340eb 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -285,7 +285,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1094,7 +1094,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1214,7 +1214,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1272,7 +1272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index c68b7a8d2a..6aa740ca67 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -296,7 +296,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1096,7 +1096,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1217,7 +1217,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1282,7 +1282,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1369,7 +1369,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-agent.lock.yml b/.github/workflows/smoke-agent.lock.yml index f6f55bab3b..0f8ff63c27 100644 --- a/.github/workflows/smoke-agent.lock.yml +++ b/.github/workflows/smoke-agent.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -302,7 +302,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1047,7 +1047,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1171,7 +1171,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1225,7 +1225,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index c4dabdf950..e29964b845 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -698,7 +698,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2724,7 +2724,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2848,7 +2848,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2906,7 +2906,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2993,7 +2993,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index 1f1251a7f9..7dd9c48e0f 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -75,7 +75,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -341,7 +341,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1551,7 +1551,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1673,7 +1673,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1726,7 +1726,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1784,7 +1784,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-copilot-arm.lock.yml b/.github/workflows/smoke-copilot-arm.lock.yml index 2c77019833..794b7f51e5 100644 --- a/.github/workflows/smoke-copilot-arm.lock.yml +++ b/.github/workflows/smoke-copilot-arm.lock.yml @@ -74,7 +74,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -346,7 +346,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2087,7 +2087,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2213,7 +2213,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2267,7 +2267,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2360,7 +2360,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index d1807ee783..a577a31e0c 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -349,7 +349,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2202,7 +2202,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2328,7 +2328,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2382,7 +2382,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -2475,7 +2475,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-create-cross-repo-pr.lock.yml b/.github/workflows/smoke-create-cross-repo-pr.lock.yml index ae2881afc5..0287d9c23f 100644 --- a/.github/workflows/smoke-create-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-create-cross-repo-pr.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -310,7 +310,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1181,7 +1181,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1319,7 +1319,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1376,7 +1376,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-gemini.lock.yml b/.github/workflows/smoke-gemini.lock.yml index 06186bc4ca..b0f0d0817d 100644 --- a/.github/workflows/smoke-gemini.lock.yml +++ b/.github/workflows/smoke-gemini.lock.yml @@ -75,7 +75,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -335,7 +335,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1270,7 +1270,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1392,7 +1392,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1445,7 +1445,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1503,7 +1503,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-multi-pr.lock.yml b/.github/workflows/smoke-multi-pr.lock.yml index 04a7dded06..670cfd75a9 100644 --- a/.github/workflows/smoke-multi-pr.lock.yml +++ b/.github/workflows/smoke-multi-pr.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -319,7 +319,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1124,7 +1124,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1263,7 +1263,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1318,7 +1318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index 346c9b4001..5636b192c0 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -318,7 +318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1557,7 +1557,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1696,7 +1696,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1753,7 +1753,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index 1a801e6fa2..1c79bc36e3 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -68,7 +68,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -314,7 +314,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1144,7 +1144,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1267,7 +1267,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1320,7 +1320,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index 39057fbdf6..0dba2ec4cf 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -303,7 +303,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1022,7 +1022,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1145,7 +1145,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1196,7 +1196,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-update-cross-repo-pr.lock.yml b/.github/workflows/smoke-update-cross-repo-pr.lock.yml index c075fa288c..8906f2712e 100644 --- a/.github/workflows/smoke-update-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-update-cross-repo-pr.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -317,7 +317,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1183,7 +1183,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1307,7 +1307,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1364,7 +1364,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1453,7 +1453,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml index a894b9ac16..d02ae933a8 100644 --- a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml +++ b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -318,7 +318,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1053,7 +1053,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1153,7 +1153,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1203,7 +1203,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/smoke-workflow-call.lock.yml b/.github/workflows/smoke-workflow-call.lock.yml index fd4a2615d1..de2ec64924 100644 --- a/.github/workflows/smoke-workflow-call.lock.yml +++ b/.github/workflows/smoke-workflow-call.lock.yml @@ -64,7 +64,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -298,7 +298,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1012,7 +1012,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1113,7 +1113,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1166,7 +1166,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index 058853c962..2d6ed730ac 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -311,7 +311,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1145,7 +1145,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1262,7 +1262,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1320,7 +1320,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1366,7 +1366,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index 1dcfe4cdf3..0ebef30bf8 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -280,7 +280,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1130,7 +1130,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1245,7 +1245,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1303,7 +1303,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index 26afb7cefb..f3296978c8 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -271,7 +271,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1084,7 +1084,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1198,7 +1198,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1256,7 +1256,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index 77d776126c..f421df1111 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -265,7 +265,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1085,7 +1085,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1202,7 +1202,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index 34ab0eff0b..7a2265052a 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -288,7 +288,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1030,7 +1030,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1145,7 +1145,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1249,7 +1249,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index 19d44db689..4e5f006ffb 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -306,7 +306,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1215,7 +1215,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1342,7 +1342,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1431,7 +1431,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1518,7 +1518,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1564,7 +1564,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index 4ef173716f..4193079f45 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -982,7 +982,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1098,7 +1098,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-create-pr-error-handling.lock.yml b/.github/workflows/test-create-pr-error-handling.lock.yml index f8c4d86683..11529b6ae9 100644 --- a/.github/workflows/test-create-pr-error-handling.lock.yml +++ b/.github/workflows/test-create-pr-error-handling.lock.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -269,7 +269,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1071,7 +1071,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1204,7 +1204,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1291,7 +1291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-dispatcher.lock.yml b/.github/workflows/test-dispatcher.lock.yml index db760552d1..d2b0edc022 100644 --- a/.github/workflows/test-dispatcher.lock.yml +++ b/.github/workflows/test-dispatcher.lock.yml @@ -50,7 +50,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -258,7 +258,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -912,7 +912,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1024,7 +1024,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-project-url-default.lock.yml b/.github/workflows/test-project-url-default.lock.yml index 16ffd3547b..313711f864 100644 --- a/.github/workflows/test-project-url-default.lock.yml +++ b/.github/workflows/test-project-url-default.lock.yml @@ -50,7 +50,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -257,7 +257,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1171,7 +1171,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1283,7 +1283,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/test-workflow.lock.yml b/.github/workflows/test-workflow.lock.yml index aa8cf34868..bce65a17a1 100644 --- a/.github/workflows/test-workflow.lock.yml +++ b/.github/workflows/test-workflow.lock.yml @@ -55,7 +55,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -244,7 +244,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index 2c6651cc65..5c8b75beb3 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -78,7 +78,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -323,7 +323,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1143,7 +1143,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1264,7 +1264,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1328,7 +1328,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index 5736450f3b..7fd461a05c 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -276,7 +276,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1066,7 +1066,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1181,7 +1181,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index 41324672e3..43940141b0 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -275,7 +275,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1025,7 +1025,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1146,7 +1146,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1211,7 +1211,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index 16177c1df7..ab97d7dee8 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -74,7 +74,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -330,7 +330,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1334,7 +1334,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1453,7 +1453,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1519,7 +1519,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1606,7 +1606,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1652,7 +1652,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index af3e6cc147..ca0c1098a9 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -278,7 +278,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1022,7 +1022,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1137,7 +1137,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-editors-health-check.lock.yml b/.github/workflows/weekly-editors-health-check.lock.yml index cf1123a870..aca16f5504 100644 --- a/.github/workflows/weekly-editors-health-check.lock.yml +++ b/.github/workflows/weekly-editors-health-check.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -272,7 +272,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1080,7 +1080,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1220,7 +1220,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1309,7 +1309,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index 25be1d9ba7..9eaccadc78 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -59,7 +59,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -290,7 +290,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1053,7 +1053,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1173,7 +1173,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1231,7 +1231,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1277,7 +1277,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index d5e299a99d..dc18cf2da8 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -270,7 +270,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -983,7 +983,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1123,7 +1123,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index e90c2ba971..5fac345195 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -63,7 +63,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -309,7 +309,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1127,7 +1127,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1231,7 +1231,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1298,7 +1298,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1374,7 +1374,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index 1557ea9f7b..e55b8ed831 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -60,7 +60,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -291,7 +291,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1228,7 +1228,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1332,7 +1332,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1371,7 +1371,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1457,7 +1457,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 5a914e8949..6a7fa4b244 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -274,7 +274,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1060,7 +1060,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1180,7 +1180,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index 0c94e45cd1..35b8f86db6 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -273,7 +273,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1073,7 +1073,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false @@ -1191,7 +1191,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: repository: github/gh-aw - ref: 45b92cc + ref: dba6334 sparse-checkout: | actions persist-credentials: false diff --git a/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/basic-copilot.golden b/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/basic-copilot.golden index 94a85f21c5..638ccc9537 100644 --- a/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/basic-copilot.golden +++ b/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/basic-copilot.golden @@ -25,6 +25,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false @@ -217,6 +218,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false @@ -479,6 +481,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false diff --git a/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/smoke-copilot.golden b/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/smoke-copilot.golden index 356a3f45c2..96ee256fc9 100644 --- a/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/smoke-copilot.golden +++ b/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/smoke-copilot.golden @@ -39,6 +39,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false @@ -305,6 +306,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false @@ -657,6 +659,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false diff --git a/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/with-imports.golden b/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/with-imports.golden index 142ceb28b4..4a32c6d152 100644 --- a/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/with-imports.golden +++ b/pkg/workflow/testdata/wasm_golden/TestWasmGolden_CompileFixtures/with-imports.golden @@ -25,6 +25,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false @@ -220,6 +221,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false @@ -482,6 +484,7 @@ jobs: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: + repository: github/gh-aw sparse-checkout: | actions persist-credentials: false