Skip to content

Commit 91d3e16

Browse files
Bump actions/checkout from 4 to 5 (#1605)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 88777c6 commit 91d3e16

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Jdk ${{ matrix.java-version }}, os ${{ matrix.runs-on }}
2929
runs-on: ${{ matrix.runs-on }}
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- name: Set up JDK ${{ matrix.java-version }}
3333
uses: actions/setup-java@v4
3434
with:
@@ -48,7 +48,7 @@ jobs:
4848
echo "release_version=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT
4949
- name: 'Download downstream project'
5050
if: ${{ matrix.java-version == env.jdk_for_downstream && matrix.runs-on == env.os_for_downstream}}
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
repository: datafaker-net/datafaker-gen
5454
fetch-depth: 1

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: 'Dependency Review'
1414
uses: actions/dependency-review-action@v4

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Configure Git Credentials
1515
run: |
1616
git config user.name github-actions[bot]

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
echo -n "$GPG_SIGNING_KEY" | gpg --import --no-tty --batch --yes
1212
env:
1313
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
ref: 'main'
1717
- name: Set up Maven Central Repository

.github/workflows/pom_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- name: Set up Git
2020
run: |
2121
git config --global user.email "github-actions[bot]@users.noreply.github.com"

.github/workflows/release-from-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo "$RELEASE_VERSION" | grep -P '^2\.[0-9]+\.[0-9]+$'
2020
echo "release_version=$RELEASE_VERSION" >> $GITHUB_OUTPUT
2121
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Set up JDK 17
2424
uses: actions/setup-java@v4
2525
with:

0 commit comments

Comments
 (0)