From 715d9991207b792d24c45ac3b96643880ee1c34f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 23:33:51 +0000 Subject: [PATCH] ci(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/bootstrap.yml | 4 ++-- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 43cb031..26cb18b 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Determine current state id: current_state @@ -86,7 +86,7 @@ jobs: steps: # We'll need to check out the repository so that we can edit the README. - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Let's get all the branches. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 854f591..db8077b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: module-list: ${{ steps.resolve.outputs.module-list }} steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ github.repository }} - name: Resolve dependencies @@ -68,7 +68,7 @@ jobs: checks: write steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run Pester Unit Tests uses: ./.github/actions/ps-unit-tests with: @@ -85,7 +85,7 @@ jobs: checks: write steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run PSScriptAnalyzer uses: ./.github/actions/ps-static-code-analysis with: @@ -102,7 +102,7 @@ jobs: checks: write steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run InjectionHunter uses: ./.github/actions/ps-code-injection with: @@ -118,7 +118,7 @@ jobs: release-version: ${{ steps.build.outputs.release-version }} steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ github.repository }} fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b633cce..0ccc01f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: contents: write steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ github.repository }} fetch-depth: 0