From fcd7f43d622276436ee851a96c00bce5000a9df1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 12:52:31 +0000 Subject: [PATCH] Bump actions/checkout from 6.0.3 to 7.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v6.0.3...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/00-basic.yml | 2 +- .github/workflows/00a-basic-filters.yml | 2 +- .github/workflows/03-steps.yml | 6 +++--- .github/workflows/04-environment-variables.yaml | 2 +- .github/workflows/04-environment-variables2.yaml | 4 ++-- .github/workflows/05-conditionals.yml | 2 +- .github/workflows/08-secrets.yml | 2 +- .github/workflows/09-node.js-matrix.yml | 2 +- .github/workflows/10-dotnet.yml | 2 +- .github/workflows/11-artifacts-caching.yml | 2 +- .github/workflows/azure-dev.yml | 2 +- .github/workflows/ci-doctor.lock.yml | 8 ++++---- .github/workflows/docker-image.yml | 2 +- .github/workflows/issue-triage-agent.lock.yml | 8 ++++---- .github/workflows/lint.yml | 2 +- .github/workflows/marp-pages.yml | 2 +- .github/workflows/pr-validation.yml | 2 +- .github/workflows/super-linter.yml | 2 +- 18 files changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/00-basic.yml b/.github/workflows/00-basic.yml index 5e9f06a..7690c86 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.3 + - uses: actions/checkout@v7.0.0 # 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 d4db019..66232cd 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.3 + - uses: actions/checkout@v7.0.0 # 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 c2c0263..0518d76 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@df4cb1c069e1874edd31b4311f1884172cec0e10 + - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # Reference the major version of a release - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 # Reference a specific version - - uses: actions/checkout@v6.0.3 + - uses: actions/checkout@v7.0.0 # ⚠️ 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 74d3611..4165ee7 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.3 + - uses: actions/checkout@v7.0.0 # 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 daa67ea..8712bf4 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.3 + - uses: actions/checkout@v7.0.0 # 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.3 + - uses: actions/checkout@v7.0.0 # 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 acd986a..116edae 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.3 + - uses: actions/checkout@v7.0.0 - name: Run Hello run: echo "$Greeting, $Name!" diff --git a/.github/workflows/08-secrets.yml b/.github/workflows/08-secrets.yml index cc989c9..510ee50 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.3 + - uses: actions/checkout@v7.0.0 # 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 cc39a2d..83c91a7 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.3 + - uses: actions/checkout@v7.0.0 - 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 4229b78..21ddc19 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.3 + - uses: actions/checkout@v7.0.0 - 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 c157809..affc1d8 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.3 + - uses: actions/checkout@v7.0.0 - 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 7c52f8c..b2aa786 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.3 + uses: actions/checkout@v7.0.0 - 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 590e88b..48a767f 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 +# - actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 # - 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: persist-credentials: false # --- Threat Detection --- diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 67badd5..11a72cd 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.3 + - uses: actions/checkout@v7.0.0 - 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 dcfa1b3..afd0d9c 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 +# - actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 # - 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: persist-credentials: false # --- Threat Detection --- diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c88a19c..ef510c3 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.3 + - uses: actions/checkout@v7.0.0 - name: Lint code run: | diff --git a/.github/workflows/marp-pages.yml b/.github/workflows/marp-pages.yml index f0c319b..f8e1b97 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.3 + - uses: actions/checkout@v7.0.0 - 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 dfc7f04..d5cb8f4 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.3 + - uses: actions/checkout@v7.0.0 - 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 6eec44a..44adbc9 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.3 + uses: actions/checkout@v7.0.0 with: # super-linter needs the full git history to get the # list of files that changed across commits