From 0c542d0f176678879b1f80c2f2260507cbd6cc75 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 04:04:09 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/reusable-base.yml | 2 +- .github/workflows/reusable-sync.yml | 2 +- .github/workflows/type-check.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/reusable-base.yml b/.github/workflows/reusable-base.yml index 027c440..2d4ab21 100644 --- a/.github/workflows/reusable-base.yml +++ b/.github/workflows/reusable-base.yml @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: ${{ inputs.submodules }} diff --git a/.github/workflows/reusable-sync.yml b/.github/workflows/reusable-sync.yml index ad7adfd..f5f4962 100644 --- a/.github/workflows/reusable-sync.yml +++ b/.github/workflows/reusable-sync.yml @@ -97,7 +97,7 @@ jobs: steps: # Base setup - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # As we want to check if the remote branch already exists and is up to date token: ${{ secrets.GITHUB_TOKEN_OVERRIDE || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml index 5dcc20f..d62f6c2 100644 --- a/.github/workflows/type-check.yml +++ b/.github/workflows/type-check.yml @@ -34,7 +34,7 @@ on: type: string submodules: default: false - description: 'From actions/checkout@v5' + description: 'From actions/checkout@v6' required: false type: string @@ -73,7 +73,7 @@ jobs: ts_lib: ${{ fromJson(needs.resolve_inputs.outputs.tsLibs) }} ts_project: ${{ fromJson(needs.resolve_inputs.outputs.tsProjects) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v4 with: