From b775a75ad7a69d2271b40e6d1b1de33d07094abe Mon Sep 17 00:00:00 2001 From: "genui-scotty[bot]" Date: Thu, 12 Mar 2026 12:07:44 -0700 Subject: [PATCH] chore: bump actions/checkout to v6 and tj-actions/changed-files to v47 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves Node.js 20 deprecation warnings. Both actions now run on Node.js 24. - actions/checkout: v4 → v6 (v6.0.2, released 2026-01-09) - tj-actions/changed-files: v44/v45 → v47 (v47.0.5, released 2026-03-03) Node.js 24 becomes the forced default on GitHub Actions runners on 2026-06-02. --- .github/workflows/code-quality.yml | 6 +++--- .github/workflows/create-release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 537362c..e518018 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -14,13 +14,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Get changed markdown files id: changed-markdown - uses: tj-actions/changed-files@v45 + uses: tj-actions/changed-files@v47 with: files: | **/*.md @@ -28,7 +28,7 @@ jobs: - name: Get changed action and test paths id: changed-actions - uses: tj-actions/changed-files@v45 + uses: tj-actions/changed-files@v47 with: files: | .github/actions/** diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 5d01bfa..f9d9d48 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -14,13 +14,13 @@ jobs: version_tags: ${{ steps.version.outputs.version_tags }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v44 + uses: tj-actions/changed-files@v47 with: files_ignore: | .github/workflows/create-release.yml @@ -122,7 +122,7 @@ jobs: id: info - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ steps.info.outputs.branch }}