From 4d68b8c5436947ca065369692857ce8686f6a3af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 18:09:03 +0000 Subject: [PATCH] Bump tj-actions/changed-files from 41 to 46 in /.github/workflows Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 41 to 46. - [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/v41...v46) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-version: '46' dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/pipeline.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index e2aed53..46b0cbc 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -36,7 +36,7 @@ jobs: fetch-depth: 0 # OR "2" -> To retrieve the preceding commit. - name: Get changed files in the src folder id: src-changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v46 with: files: src/** - name: List src changes @@ -46,7 +46,7 @@ jobs: echo "List all the files that have changed: ${{ steps.src-changed.outputs.all_changed_files }}" - name: Get changed files in the tests folder id: tests-changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v46 with: files: tests/** - name: List tests changes @@ -57,7 +57,7 @@ jobs: - name: Get changed files in the root folder id: root-changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v46 with: files: | *.{toml,ini} @@ -70,7 +70,7 @@ jobs: - name: Get changed files in the docs folder id: docs-changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v46 with: files: docs/** - name: List docs changes @@ -81,7 +81,7 @@ jobs: - name: Get changed files in the workflows folder id: workflows-changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v46 with: files: .github/workflows/** - name: List workflows changes @@ -92,7 +92,7 @@ jobs: - name: Get changed files in the .github folder id: tools-changed - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v46 with: files: .github/*.{json,properties} - name: List tools changes