From 8a99e4fe799076f102575cd83ff173ce458ee85e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 06:23:44 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-docs.yml | 4 ++-- .github/workflows/template-module.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 2f10513..2086a08 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 // Needed to fetch all history and tags @@ -65,7 +65,7 @@ jobs: needs: upload-index-data steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download artifact uses: actions/download-artifact@v4 diff --git a/.github/workflows/template-module.yml b/.github/workflows/template-module.yml index 8b1cf29..a9bb9b5 100644 --- a/.github/workflows/template-module.yml +++ b/.github/workflows/template-module.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run Bicep linter run: az bicep build --file ${{ inputs.module_file_path }} @@ -65,7 +65,7 @@ jobs: needs: [lint] steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Sign in to Azure uses: azure/login@v2