From d96b8e7242b383321f1453637fc9ddb114d027e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 22:17:00 +0000 Subject: [PATCH] build(deps): bump the all-actions group with 4 updates Bumps the all-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [tj-actions/changed-files](https://github.com/tj-actions/changed-files), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) Updates `tj-actions/changed-files` from 47.0.0 to 47.0.1 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/24d32ffd492484c1d75e0c0b894501ddb9d30d62...e0021407031f5be11a464abee9a0776171c79891) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: tj-actions/changed-files dependency-version: 47.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .../workflows/Scheduled-Dependabot-PRs-Auto-Merge.yml | 2 +- .github/workflows/azure-dev.yml | 2 +- .github/workflows/broken-links-checker.yml | 4 ++-- .github/workflows/create-release.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/docker-build-and-push.yml | 2 +- .github/workflows/node.js.yml | 2 +- .github/workflows/pylint.yml | 2 +- .github/workflows/python-app.yml | 4 ++-- .github/workflows/stale-bot.yml | 4 ++-- .github/workflows/telemetry-template-check.yml | 2 +- .github/workflows/test-automation.yml | 4 ++-- .github/workflows/tests.yml | 10 +++++----- 13 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/Scheduled-Dependabot-PRs-Auto-Merge.yml b/.github/workflows/Scheduled-Dependabot-PRs-Auto-Merge.yml index 0653e3d70..e29507533 100644 --- a/.github/workflows/Scheduled-Dependabot-PRs-Auto-Merge.yml +++ b/.github/workflows/Scheduled-Dependabot-PRs-Auto-Merge.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install GitHub CLI run: | diff --git a/.github/workflows/azure-dev.yml b/.github/workflows/azure-dev.yml index e2a5064a5..6f1c6305f 100644 --- a/.github/workflows/azure-dev.yml +++ b/.github/workflows/azure-dev.yml @@ -15,7 +15,7 @@ jobs: steps: # Step 1: Checkout the code from your repository - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Step 2: Validate the Azure template using microsoft/template-validation-action - name: Validate Azure Template diff --git a/.github/workflows/broken-links-checker.yml b/.github/workflows/broken-links-checker.yml index 3692fc1a0..eac55568c 100644 --- a/.github/workflows/broken-links-checker.yml +++ b/.github/workflows/broken-links-checker.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -24,7 +24,7 @@ jobs: - name: Get changed markdown files (PR only) id: changed-markdown-files if: github.event_name == 'pull_request' - uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v46 + uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v46 with: files: | **/*.md diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 2a2cbb23d..a2f90c4a4 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.workflow_run.head_sha }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d1d35864f..56910420f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: WEBAPP_URL: ${{ steps.get_output.outputs.WEBAPP_URL }} steps: - name: Checkout Code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Azure CLI run: | diff --git a/.github/workflows/docker-build-and-push.yml b/.github/workflows/docker-build-and-push.yml index 7f4f7fb04..ebf67c672 100644 --- a/.github/workflows/docker-build-and-push.yml +++ b/.github/workflows/docker-build-and-push.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 5a2a5ae44..d1275a9e3 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -22,7 +22,7 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 with: diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 8cc4b46c9..4533dc322 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -12,7 +12,7 @@ jobs: steps: # Step 1: Checkout code - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Step 2: Set up Python environment - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 2c6321914..2a3eac32c 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -17,7 +17,7 @@ jobs: runs-on: - ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python 3.11 uses: actions/setup-python@v6 with: @@ -35,7 +35,7 @@ jobs: runs-on: - windows-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python 3.11 uses: actions/setup-python@v6 with: diff --git a/.github/workflows/stale-bot.yml b/.github/workflows/stale-bot.yml index 4ddc83c4f..85c76e855 100644 --- a/.github/workflows/stale-bot.yml +++ b/.github/workflows/stale-bot.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Fetch full history for accurate branch checks - name: Fetch All Branches @@ -75,7 +75,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload CSV Report of Inactive Branches - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: merged-branches-report path: merged_branches_report.csv diff --git a/.github/workflows/telemetry-template-check.yml b/.github/workflows/telemetry-template-check.yml index 40a792ad6..9b12879c1 100644 --- a/.github/workflows/telemetry-template-check.yml +++ b/.github/workflows/telemetry-template-check.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check for required metadata template line run: | diff --git a/.github/workflows/test-automation.yml b/.github/workflows/test-automation.yml index c5832df25..78c32ccfd 100644 --- a/.github/workflows/test-automation.yml +++ b/.github/workflows/test-automation.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 @@ -79,7 +79,7 @@ jobs: - name: Upload test report id: upload_report - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: ${{ !cancelled() }} with: name: test-report diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 54d8c0631..7c2c27ba0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest # Use the latest Ubuntu runner steps: - - uses: actions/checkout@v5 # Checkout the repository + - uses: actions/checkout@v6 # Checkout the repository # Set up Python environment for Backend - name: Set up Python @@ -49,7 +49,7 @@ jobs: echo "No tests found, skipping coverage check." fi - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: backend-coverage path: | @@ -62,7 +62,7 @@ jobs: runs-on: ubuntu-latest # Use the latest Ubuntu runner steps: - - uses: actions/checkout@v5 # Checkout the repository + - uses: actions/checkout@v6 # Checkout the repository # Set up Node.js environment for Frontend - name: Set up Node.js @@ -71,7 +71,7 @@ jobs: node-version: '20' # Set the Node.js version - name: Cache npm dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -103,7 +103,7 @@ jobs: echo "No tests found, skipping coverage check." fi - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: frontend-coverage path: |