Skip to content

Commit 35b3b17

Browse files
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](actions/checkout@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] <support@github.com>
1 parent fe40aa6 commit 35b3b17

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/reusable-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
steps:
6262
- name: Checkout code
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@v5
6464
with:
6565
submodules: ${{ inputs.submodules }}
6666

.github/workflows/reusable-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
# Base setup
9999

100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v5
101101
with:
102102
fetch-depth: 0 # As we want to check if the remote branch already exists and is up to date
103103
token: ${{ secrets.GITHUB_TOKEN_OVERRIDE || secrets.GITHUB_TOKEN }}

.github/workflows/type-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ on:
3434
type: string
3535
submodules:
3636
default: false
37-
description: 'From actions/checkout@v4'
37+
description: 'From actions/checkout@v5'
3838
required: false
3939
type: string
4040

@@ -73,7 +73,7 @@ jobs:
7373
ts_lib: ${{ fromJson(needs.resolve_inputs.outputs.tsLibs) }}
7474
ts_project: ${{ fromJson(needs.resolve_inputs.outputs.tsProjects) }}
7575
steps:
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v5
7777
- name: Use Node.js ${{ matrix.node_version }}
7878
uses: actions/setup-node@v4
7979
with:

0 commit comments

Comments
 (0)