Skip to content

Commit 6c74dee

Browse files
dependabot: 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] <[email protected]>
1 parent eb2d244 commit 6c74dee

9 files changed

+11
-11
lines changed

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Get tag
2323
id: tag
2424
uses: dawidd6/action-get-tag@v1
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- uses: ncipollo/release-action@v1
2727
with:
2828
github_token: ${{ steps.github_app_token.outputs.token }}

.github/workflows/bwc-test-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
java-version: 21
2121
# index-management
2222
- name: Checkout Branch
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Run IM Backwards Compatibility Tests
2525
run: |
2626
echo "Running backwards compatibility tests..."

.github/workflows/create-documentation-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
installation_id: 22958780
2323

2424
- name: Checkout code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Edit the issue template
2828
run: |

.github/workflows/docker-security-test-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
distribution: temurin # Temurin is a distribution of adoptium
1919
java-version: 21
2020
- name: Checkout Branch
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
- name: Build Index Management
2323
run: ./gradlew assemble
2424
- name: Pull and Run Docker

.github/workflows/links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
check:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: lychee Link Checker
1414
id: lychee
1515
uses: lycheeverse/lychee-action@master

.github/workflows/maven-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
distribution: temurin # Temurin is a distribution of adoptium
2323
java-version: 21
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Load secret
2626
uses: 1password/load-secrets-action@v3
2727
with:

.github/workflows/multi-node-test-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
java-version: 21
4747
# index-management
4848
- name: Checkout Branch
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
- name: Run integration tests with multi node config
5151
run: |
5252
chown -R 1000:1000 `pwd`

.github/workflows/security-test-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
java-version: ${{ matrix.java }}
4242
# index-management
4343
- name: Checkout Branch
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
- name: Run integration tests
4646
run: |
4747
chown -R 1000:1000 `pwd`

.github/workflows/test-and-build-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
java-version: ${{ matrix.java }}
4949
# build index management
5050
- name: Checkout Branch
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
# This is a hack, but this step creates a link to the X: mounted drive, which makes the path
5353
# short enough to work on Windows
5454
- name: Build with Gradle
@@ -129,7 +129,7 @@ jobs:
129129
java-version: ${{ matrix.java }}
130130
# build index management
131131
- name: Checkout Branch
132-
uses: actions/checkout@v4
132+
uses: actions/checkout@v5
133133
# This is a hack, but this step creates a link to the X: mounted drive, which makes the path
134134
# short enough to work on Windows
135135
- name: Shorten Path
@@ -157,7 +157,7 @@ jobs:
157157
if: always()
158158
runs-on: ubuntu-latest
159159
steps:
160-
- uses: actions/checkout@v4
160+
- uses: actions/checkout@v5
161161
- uses: actions/download-artifact@v5
162162
with:
163163
path: downloaded-artifacts

0 commit comments

Comments
 (0)