From 0fe215f9fd170fc5140f4ad4e69488fefea58edf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 10:25:57 +0000 Subject: [PATCH 01/11] Bump super-linter/super-linter from 8.3.0 to 8.3.2 Bumps [super-linter/super-linter](https://github.com/super-linter/super-linter) from 8.3.0 to 8.3.2. - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/super-linter/super-linter/compare/502f4fe48a81a392756e173e39a861f8c8efe056...d5b0a2ab116623730dd094f15ddc1b6b25bf7b99) --- updated-dependencies: - dependency-name: super-linter/super-linter dependency-version: 8.3.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/Linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Linter.yml b/.github/workflows/Linter.yml index d1565e6..2455422 100644 --- a/.github/workflows/Linter.yml +++ b/.github/workflows/Linter.yml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - name: Lint code base - uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056 # v8.3.0 + uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 env: GITHUB_TOKEN: ${{ github.token }} VALIDATE_JSON_PRETTIER: false From e28c3c24b78409b979968d71aeae7d921851fa5f Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 13:44:35 +0100 Subject: [PATCH 02/11] Add cleanup script execution to action workflow --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index a4614ec..f4127e0 100644 --- a/action.yml +++ b/action.yml @@ -107,3 +107,4 @@ runs: finally { ${{ github.action_path }}/scripts/clean.ps1 } + From 20686616e3ef0d31e33404aafc4772f0f68b9d19 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 19:49:19 +0100 Subject: [PATCH 03/11] Remove unnecessary newline in action.yml --- action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/action.yml b/action.yml index f4127e0..a4614ec 100644 --- a/action.yml +++ b/action.yml @@ -107,4 +107,3 @@ runs: finally { ${{ github.action_path }}/scripts/clean.ps1 } - From 31ff39ec580743032e862510cb1dc44d3d146a5a Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 20:37:45 +0100 Subject: [PATCH 04/11] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Add=20VALIDATE?= =?UTF-8?q?=5FBIOME=5FFORMAT=20environment=20variable=20to=20super-linter?= =?UTF-8?q?=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/Auto-Release.yml | 4 ++-- .github/workflows/Linter.yml | 3 ++- .github/workflows/TestWorkflow.yml | 26 +++++++++++++------------- 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/.github/workflows/Auto-Release.yml b/.github/workflows/Auto-Release.yml index 671e277..81b7385 100644 --- a/.github/workflows/Auto-Release.yml +++ b/.github/workflows/Auto-Release.yml @@ -26,11 +26,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Auto-Release - uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1 + uses: PSModule/Auto-Release@eabd533035e2cb9822160f26f2eda584bd012356 # v1.9.5 env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/Linter.yml b/.github/workflows/Linter.yml index 2455422..b8dc605 100644 --- a/.github/workflows/Linter.yml +++ b/.github/workflows/Linter.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false fetch-depth: 0 @@ -28,6 +28,7 @@ jobs: uses: super-linter/super-linter@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 env: GITHUB_TOKEN: ${{ github.token }} + VALIDATE_BIOME_FORMAT: false VALIDATE_JSON_PRETTIER: false VALIDATE_MARKDOWN_PRETTIER: false VALIDATE_YAML_PRETTIER: false diff --git a/.github/workflows/TestWorkflow.yml b/.github/workflows/TestWorkflow.yml index 46e1100..f723b49 100644 --- a/.github/workflows/TestWorkflow.yml +++ b/.github/workflows/TestWorkflow.yml @@ -53,7 +53,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -77,7 +77,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false # # Not a supported way of running the action @@ -146,7 +146,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -327,7 +327,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -390,7 +390,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -409,7 +409,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -436,7 +436,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -463,7 +463,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -490,7 +490,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -526,7 +526,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test @@ -563,7 +563,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false # Login to Azure to enable KeyVault access @@ -613,7 +613,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false # Login to Azure to enable KeyVault access @@ -662,7 +662,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6 + uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: persist-credentials: false - name: Action-Test with PreserveCredentials false From 177a55ea14aab8983f85bf7e2392f2fa954ea4a9 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 20:52:08 +0100 Subject: [PATCH 05/11] =?UTF-8?q?=F0=9F=A9=B9=20[Patch]:=20Pass=20Script?= =?UTF-8?q?=20input=20as=20an=20environment=20variable=20to=20the=20action?= =?UTF-8?q?=20execution?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index a4614ec..5f207b7 100644 --- a/action.yml +++ b/action.yml @@ -80,6 +80,7 @@ runs: working-directory: ${{ inputs.WorkingDirectory }} env: PSMODULE_GITHUB_SCRIPT_INPUT_Name: ${{ inputs.Name }} + PSMODULE_GITHUB_SCRIPT_INPUT_Script: ${{ inputs.Script }} PSMODULE_GITHUB_SCRIPT_INPUT_Token: ${{ inputs.Token }} PSMODULE_GITHUB_SCRIPT_INPUT_ClientID: ${{ inputs.ClientID }} PSMODULE_GITHUB_SCRIPT_INPUT_PrivateKey: ${{ inputs.PrivateKey }} @@ -94,14 +95,16 @@ runs: PSMODULE_GITHUB_SCRIPT_INPUT_ErrorView: ${{ inputs.ErrorView }} PSMODULE_GITHUB_SCRIPT_INPUT_PreserveCredentials: ${{ inputs.PreserveCredentials }} run: | - # ${{ inputs.Name }} $ErrorView = $env:PSMODULE_GITHUB_SCRIPT_INPUT_ErrorView $DebugPreference = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Debug -eq 'true' ? 'Continue' : 'SilentlyContinue' $VerbosePreference = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Verbose -eq 'true' ? 'Continue' : 'SilentlyContinue' try { ${{ github.action_path }}/scripts/init.ps1 ${{ github.action_path }}/scripts/info.ps1 - ${{ inputs.Script }} + $scriptText = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Script + if (-not [string]::IsNullOrWhiteSpace($scriptText)) { + & ([scriptblock]::Create($scriptText)) + } ${{ github.action_path }}/scripts/outputs.ps1 } finally { From 2fcca150dbcc697068894b956f3f3a709b0cfa09 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 21:02:57 +0100 Subject: [PATCH 06/11] Add configuration for template-injection rule in zizmor.yaml and remove unused Script input from action.yml --- .github/linters/zizmor.yaml | 4 ++++ action.yml | 7 ++----- 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 .github/linters/zizmor.yaml diff --git a/.github/linters/zizmor.yaml b/.github/linters/zizmor.yaml new file mode 100644 index 0000000..d0b6c21 --- /dev/null +++ b/.github/linters/zizmor.yaml @@ -0,0 +1,4 @@ +rules: + template-injection: + ignore: + - action.yml diff --git a/action.yml b/action.yml index 5f207b7..a4614ec 100644 --- a/action.yml +++ b/action.yml @@ -80,7 +80,6 @@ runs: working-directory: ${{ inputs.WorkingDirectory }} env: PSMODULE_GITHUB_SCRIPT_INPUT_Name: ${{ inputs.Name }} - PSMODULE_GITHUB_SCRIPT_INPUT_Script: ${{ inputs.Script }} PSMODULE_GITHUB_SCRIPT_INPUT_Token: ${{ inputs.Token }} PSMODULE_GITHUB_SCRIPT_INPUT_ClientID: ${{ inputs.ClientID }} PSMODULE_GITHUB_SCRIPT_INPUT_PrivateKey: ${{ inputs.PrivateKey }} @@ -95,16 +94,14 @@ runs: PSMODULE_GITHUB_SCRIPT_INPUT_ErrorView: ${{ inputs.ErrorView }} PSMODULE_GITHUB_SCRIPT_INPUT_PreserveCredentials: ${{ inputs.PreserveCredentials }} run: | + # ${{ inputs.Name }} $ErrorView = $env:PSMODULE_GITHUB_SCRIPT_INPUT_ErrorView $DebugPreference = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Debug -eq 'true' ? 'Continue' : 'SilentlyContinue' $VerbosePreference = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Verbose -eq 'true' ? 'Continue' : 'SilentlyContinue' try { ${{ github.action_path }}/scripts/init.ps1 ${{ github.action_path }}/scripts/info.ps1 - $scriptText = $env:PSMODULE_GITHUB_SCRIPT_INPUT_Script - if (-not [string]::IsNullOrWhiteSpace($scriptText)) { - & ([scriptblock]::Create($scriptText)) - } + ${{ inputs.Script }} ${{ github.action_path }}/scripts/outputs.ps1 } finally { From ee980f6f5a417fedb60a352887b8611c2a3df55a Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 21:10:52 +0100 Subject: [PATCH 07/11] Update Dependabot schedule to run daily and set cooldown period --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 53188fe..0da2fac 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,4 +11,6 @@ updates: - dependencies - github-actions schedule: - interval: weekly + interval: daily + cooldown: + default-days: 7 From ba48ee44b6a12a1a08835877217aff8303e959c4 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 22:20:51 +0100 Subject: [PATCH 08/11] Add secrets-inherit rule to ignore specific workflow files in zizmor.yaml --- .github/linters/zizmor.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/linters/zizmor.yaml b/.github/linters/zizmor.yaml index d0b6c21..34642ff 100644 --- a/.github/linters/zizmor.yaml +++ b/.github/linters/zizmor.yaml @@ -2,3 +2,7 @@ rules: template-injection: ignore: - action.yml + secrets-inherit: + ignore: + - .github/workflows/Action-Test-Prerelease.yml + - .github/workflows/Action-Test.yml From 5f65f9f979ea4fafb2aa7153eb4ed9acd3f8c393 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 22:49:46 +0100 Subject: [PATCH 09/11] Refactor workflow secrets configuration to explicitly list secrets in Action-Test and Action-Test-Prerelease workflows --- .github/linters/zizmor.yaml | 4 ---- .github/workflows/Action-Test-Prerelease.yml | 10 +++++++++- .github/workflows/Action-Test.yml | 10 +++++++++- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/linters/zizmor.yaml b/.github/linters/zizmor.yaml index 34642ff..d0b6c21 100644 --- a/.github/linters/zizmor.yaml +++ b/.github/linters/zizmor.yaml @@ -2,7 +2,3 @@ rules: template-injection: ignore: - action.yml - secrets-inherit: - ignore: - - .github/workflows/Action-Test-Prerelease.yml - - .github/workflows/Action-Test.yml diff --git a/.github/workflows/Action-Test-Prerelease.yml b/.github/workflows/Action-Test-Prerelease.yml index 89122f0..c5de2cd 100644 --- a/.github/workflows/Action-Test-Prerelease.yml +++ b/.github/workflows/Action-Test-Prerelease.yml @@ -17,7 +17,15 @@ permissions: jobs: ActionTest: uses: ./.github/workflows/TestWorkflow.yml - secrets: inherit + secrets: + TEST_USER_PAT: ${{ secrets.TEST_USER_PAT }} + TEST_USER_USER_FG_PAT: ${{ secrets.TEST_USER_USER_FG_PAT }} + TEST_USER_ORG_FG_PAT: ${{ secrets.TEST_USER_ORG_FG_PAT }} + TEST_APP_ENT_CLIENT_ID: ${{ secrets.TEST_APP_ENT_CLIENT_ID }} + TEST_APP_ENT_PRIVATE_KEY: ${{ secrets.TEST_APP_ENT_PRIVATE_KEY }} + TEST_APP_ORG_CLIENT_ID: ${{ secrets.TEST_APP_ORG_CLIENT_ID }} + TEST_APP_ORG_PRIVATE_KEY: ${{ secrets.TEST_APP_ORG_PRIVATE_KEY }} + KEYVAULT_KEY_REFERENCE: ${{ secrets.KEYVAULT_KEY_REFERENCE }} strategy: fail-fast: false matrix: diff --git a/.github/workflows/Action-Test.yml b/.github/workflows/Action-Test.yml index 7aaed5b..d019832 100644 --- a/.github/workflows/Action-Test.yml +++ b/.github/workflows/Action-Test.yml @@ -20,7 +20,15 @@ permissions: jobs: ActionTest: uses: ./.github/workflows/TestWorkflow.yml - secrets: inherit + secrets: + TEST_USER_PAT: ${{ secrets.TEST_USER_PAT }} + TEST_USER_USER_FG_PAT: ${{ secrets.TEST_USER_USER_FG_PAT }} + TEST_USER_ORG_FG_PAT: ${{ secrets.TEST_USER_ORG_FG_PAT }} + TEST_APP_ENT_CLIENT_ID: ${{ secrets.TEST_APP_ENT_CLIENT_ID }} + TEST_APP_ENT_PRIVATE_KEY: ${{ secrets.TEST_APP_ENT_PRIVATE_KEY }} + TEST_APP_ORG_CLIENT_ID: ${{ secrets.TEST_APP_ORG_CLIENT_ID }} + TEST_APP_ORG_PRIVATE_KEY: ${{ secrets.TEST_APP_ORG_PRIVATE_KEY }} + KEYVAULT_KEY_REFERENCE: ${{ secrets.KEYVAULT_KEY_REFERENCE }} strategy: fail-fast: false matrix: From 6ddf0ca35b2e9f025e1e6ea3c9d2e0d805f7384d Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 22:55:05 +0100 Subject: [PATCH 10/11] Fix event trigger type in Auto-Release workflow to use pull_request instead of pull_request_target --- .github/workflows/Auto-Release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Auto-Release.yml b/.github/workflows/Auto-Release.yml index 81b7385..5f9f74e 100644 --- a/.github/workflows/Auto-Release.yml +++ b/.github/workflows/Auto-Release.yml @@ -3,7 +3,7 @@ name: Auto-Release run-name: "Auto-Release - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}" on: - pull_request_target: + pull_request: branches: - main types: From 7930486a665d174508823607dfa07da452daf226 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 16 Jan 2026 23:02:19 +0100 Subject: [PATCH 11/11] Update actions/checkout to version 6.0.2 in workflow files --- .github/workflows/Auto-Release.yml | 2 +- .github/workflows/Linter.yml | 2 +- .github/workflows/TestWorkflow.yml | 26 +++++++++++++------------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/Auto-Release.yml b/.github/workflows/Auto-Release.yml index 5f9f74e..87e5250 100644 --- a/.github/workflows/Auto-Release.yml +++ b/.github/workflows/Auto-Release.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false diff --git a/.github/workflows/Linter.yml b/.github/workflows/Linter.yml index b8dc605..cf13018 100644 --- a/.github/workflows/Linter.yml +++ b/.github/workflows/Linter.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/TestWorkflow.yml b/.github/workflows/TestWorkflow.yml index f723b49..b1ba67e 100644 --- a/.github/workflows/TestWorkflow.yml +++ b/.github/workflows/TestWorkflow.yml @@ -53,7 +53,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -77,7 +77,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false # # Not a supported way of running the action @@ -146,7 +146,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -327,7 +327,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -390,7 +390,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -409,7 +409,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -436,7 +436,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -463,7 +463,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -490,7 +490,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -526,7 +526,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false - name: Action-Test @@ -563,7 +563,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false # Login to Azure to enable KeyVault access @@ -613,7 +613,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: persist-credentials: false # Login to Azure to enable KeyVault access @@ -662,7 +662,7 @@ jobs: steps: # Need to check out as part of the test, as its a local action - name: Checkout repo - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: persist-credentials: false - name: Action-Test with PreserveCredentials false