Skip to content

Commit 71bd950

Browse files
authored
Merge branch 'main' into dependabot/gradle/org.jacoco-org.jacoco.agent-0.8.14
2 parents 5f08e05 + 5329754 commit 71bd950

10 files changed

+14
-14
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@v6
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@v6
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@v6
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@v6
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@v6
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@v6
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@v6
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@v6
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@v6
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@v6
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@v6
161161
- uses: actions/download-artifact@v5
162162
with:
163163
path: downloaded-artifacts

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ buildscript {
8888

8989
plugins {
9090
id "de.undercouch.download" version "5.6.0"
91-
id "com.netflix.nebula.ospackage" version "12.0.0"
91+
id "com.netflix.nebula.ospackage" version "12.1.1"
9292
id "com.dorongold.task-tree" version "2.1.1"
9393
}
9494

@@ -247,8 +247,8 @@ dependencies {
247247
configurations.ktlint {
248248
resolutionStrategy{
249249
force "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.25"
250-
force "ch.qos.logback:logback-classic:1.5.19"
251-
force "ch.qos.logback:logback-core:1.5.19"
250+
force "ch.qos.logback:logback-classic:1.5.22"
251+
force "ch.qos.logback:logback-core:1.5.22"
252252
}
253253
}
254254

0 commit comments

Comments
 (0)