diff --git a/.github/workflows/00-basic.yml b/.github/workflows/00-basic.yml index c26e09e..5e9f06a 100644 --- a/.github/workflows/00-basic.yml +++ b/.github/workflows/00-basic.yml @@ -15,7 +15,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/00a-basic-filters.yml b/.github/workflows/00a-basic-filters.yml index 3489125..d4db019 100644 --- a/.github/workflows/00a-basic-filters.yml +++ b/.github/workflows/00a-basic-filters.yml @@ -36,7 +36,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/03-steps.yml b/.github/workflows/03-steps.yml index d047029..c2c0263 100644 --- a/.github/workflows/03-steps.yml +++ b/.github/workflows/03-steps.yml @@ -50,11 +50,11 @@ jobs: shell: perl {0} # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Reference a specific commit (most secure — immutable) - - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # Reference the major version of a release - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # Reference a specific version - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # ⚠️ INSECURE — branch refs are mutable and vulnerable to supply chain attacks # Reference a branch (demo only — do NOT use in production workflows) - uses: actions/checkout@main diff --git a/.github/workflows/04-environment-variables.yaml b/.github/workflows/04-environment-variables.yaml index c2cf155..74d3611 100644 --- a/.github/workflows/04-environment-variables.yaml +++ b/.github/workflows/04-environment-variables.yaml @@ -27,7 +27,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/04-environment-variables2.yaml b/.github/workflows/04-environment-variables2.yaml index 496fba0..daa67ea 100644 --- a/.github/workflows/04-environment-variables2.yaml +++ b/.github/workflows/04-environment-variables2.yaml @@ -29,7 +29,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # Runs a single command using the runners shell - name: Run a one-line script @@ -44,7 +44,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # Runs a single command using the runners shell - name: Run a one-line script diff --git a/.github/workflows/05-conditionals.yml b/.github/workflows/05-conditionals.yml index f628f6d..acd986a 100644 --- a/.github/workflows/05-conditionals.yml +++ b/.github/workflows/05-conditionals.yml @@ -27,7 +27,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Run Hello run: echo "$Greeting, $Name!" diff --git a/.github/workflows/08-secrets.yml b/.github/workflows/08-secrets.yml index f4d370c..cc989c9 100644 --- a/.github/workflows/08-secrets.yml +++ b/.github/workflows/08-secrets.yml @@ -26,7 +26,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 # Runs a single command using the runners shell - name: Pass via Context diff --git a/.github/workflows/09-node.js-matrix.yml b/.github/workflows/09-node.js-matrix.yml index dc804ab..cc39a2d 100644 --- a/.github/workflows/09-node.js-matrix.yml +++ b/.github/workflows/09-node.js-matrix.yml @@ -26,7 +26,7 @@ jobs: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 with: diff --git a/.github/workflows/10-dotnet.yml b/.github/workflows/10-dotnet.yml index 9d9516f..4229b78 100644 --- a/.github/workflows/10-dotnet.yml +++ b/.github/workflows/10-dotnet.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Setup .NET uses: actions/setup-dotnet@v5 with: diff --git a/.github/workflows/11-artifacts-caching.yml b/.github/workflows/11-artifacts-caching.yml index acac25e..c157809 100644 --- a/.github/workflows/11-artifacts-caching.yml +++ b/.github/workflows/11-artifacts-caching.yml @@ -19,7 +19,7 @@ jobs: working-directory: node-example steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Setup Node.js with caching uses: actions/setup-node@v6 diff --git a/.github/workflows/azure-dev.yml b/.github/workflows/azure-dev.yml index 7a291cd..7c52f8c 100644 --- a/.github/workflows/azure-dev.yml +++ b/.github/workflows/azure-dev.yml @@ -35,7 +35,7 @@ jobs: AZURE_LOCATION: ${{ vars.AZURE_LOCATION }} steps: - name: Checkout - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 - name: Install azd uses: Azure/setup-azd@v2.3.0 diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index 2b8821a..4babcc4 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -39,7 +39,7 @@ # Custom actions used: # - actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 # - actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 -# - actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 +# - actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 # - actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 # - actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9 # - actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 @@ -133,7 +133,7 @@ jobs: env: COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }} - name: Checkout .github and .agents folders - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false sparse-checkout: | @@ -371,7 +371,7 @@ jobs: echo "GH_AW_SAFE_OUTPUTS_TOOLS_PATH=${RUNNER_TEMP}/gh-aw/safeoutputs/tools.json" } >> "$GITHUB_OUTPUT" - name: Checkout repository - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false - name: Create gh-aw temp directory @@ -1145,7 +1145,7 @@ jobs: echo "GH_AW_AGENT_OUTPUT=/tmp/gh-aw/agent_output.json" >> "$GITHUB_OUTPUT" - name: Checkout repository for patch context if: needs.agent.outputs.has_patch == 'true' - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false # --- Threat Detection --- diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 70ba5ef..67badd5 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Login to Docker Hub uses: docker/login-action@v4 with: diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index 1d2522f..82dc5fc 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -37,7 +37,7 @@ # - GITHUB_TOKEN # # Custom actions used: -# - actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 +# - actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 # - actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 # - actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9 # - actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 @@ -126,7 +126,7 @@ jobs: env: COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }} - name: Checkout .github and .agents folders - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false sparse-checkout: | @@ -326,7 +326,7 @@ jobs: echo "GH_AW_SAFE_OUTPUTS_TOOLS_PATH=${RUNNER_TEMP}/gh-aw/safeoutputs/tools.json" } >> "$GITHUB_OUTPUT" - name: Checkout repository - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false - name: Create gh-aw temp directory @@ -988,7 +988,7 @@ jobs: echo "GH_AW_AGENT_OUTPUT=/tmp/gh-aw/agent_output.json" >> "$GITHUB_OUTPUT" - name: Checkout repository for patch context if: needs.agent.outputs.has_patch == 'true' - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 with: persist-credentials: false # --- Threat Detection --- diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 49317db..c88a19c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ jobs: name: Lint code runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Lint code run: | diff --git a/.github/workflows/marp-pages.yml b/.github/workflows/marp-pages.yml index 877a0a7..f0c319b 100644 --- a/.github/workflows/marp-pages.yml +++ b/.github/workflows/marp-pages.yml @@ -25,7 +25,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - name: Copy images run: mkdir build && cp -R slides/img build/img && cp -R slides/themes build/themes diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 971575e..dfc7f04 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -19,7 +19,7 @@ jobs: needs: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6.0.3 - uses: azure/login@v3 name: Sign in to Azure with: diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 11bd772..6eec44a 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v6.0.3 with: # super-linter needs the full git history to get the # list of files that changed across commits