Skip to content

Commit 4c4f07d

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 33c7d64 commit 4c4f07d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

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

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/create-release.yml

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

2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0 # Fetch the history, or this action won't work
2929

.github/workflows/dependabot-automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Check if PR should be auto-merged
1717
uses: ahmadnassri/action-dependabot-auto-merge@v2

.github/workflows/test-and-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- name: Use Node.js ${{ matrix.node-version }}
3434
uses: actions/setup-node@v4
3535
with:
@@ -50,7 +50,7 @@ jobs:
5050
build:
5151
runs-on: ubuntu-latest
5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454
- uses: actions/setup-node@v4
5555
with:
5656
node-version: 20.x
@@ -70,7 +70,7 @@ jobs:
7070
os: [ubuntu-latest, windows-latest, macos-latest]
7171

7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474
- name: Use Node.js ${{ matrix.node-version }}
7575
uses: actions/setup-node@v4
7676
with:
@@ -107,7 +107,7 @@ jobs:
107107

108108
- name: Checkout code
109109
if: steps.automerge.outputs.mergeResult == 'merged'
110-
uses: actions/checkout@v4
110+
uses: actions/checkout@v5
111111
with:
112112
fetch-depth: 0 # Fetch the history, or this action won't work
113113
ref: 'master'

0 commit comments

Comments
 (0)