Skip to content

Commit 55bebf0

Browse files
dependabot[bot]duncdrum
authored andcommitted
chore(gha): 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 7b5a6db commit 55bebf0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
sudo apt-get install -y libxml2-utils
3232
3333
# Checkout code fetch-depth significantly impacts performance
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 1
3737

@@ -58,7 +58,7 @@ jobs:
5858
java-version: 11
5959
steps:
6060
- name: Checkout (sparse)
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 1
6464
- name: Build Expath Package
@@ -185,7 +185,7 @@ jobs:
185185
if: github.ref == 'refs/heads/master'
186186
steps:
187187
- name: Checkout
188-
uses: actions/checkout@v4
188+
uses: actions/checkout@v5
189189
with:
190190
persist-credentials: false
191191
- name: Setup Node.js

.github/workflows/pr-external.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
2222
# Use ...head.ref for the full branch
2323
- name: Checkout PR head SHA
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 1
2727
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/pr-internal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
sudo apt-get install -y libsaxonhe-java
2121
2222
- name: Checkout PR branch
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 1
2626
ref: ${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)