Skip to content

Commit 23ff646

Browse files
dependabot[bot]ritiktrianz
authored andcommitted
build(deps): bump actions/checkout from 4 to 5 (awslabs#2933)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> build check build check
1 parent c045445 commit 23ff646

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
security-events: write
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
- name: Initialize CodeQL
3434
uses: github/codeql-action/init@v3
3535
# Specify custom java build since the autobuild doesn't take advantage of multiple cores.

.github/workflows/cut_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
java-version: '11'
2121

2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/javadoc_sync.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: aws-athena-query-federation_ubuntu-latest_16-core
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212

1313
- name: Set up JDK 11
1414
uses: actions/setup-java@v4

.github/workflows/maven_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: needs.pre_job.outputs.should_skip != 'true'
2222
runs-on: aws-athena-query-federation_ubuntu-latest_16-core
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Set up JDK 11
2626
uses: actions/setup-java@v4
2727
with:

.github/workflows/publish_to_maven_central.yml

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

1313
steps:
1414
- name: Checkout Codebase
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Set up Maven Central Repository
1818
uses: actions/setup-java@v4

.github/workflows/run_release_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
distribution: 'corretto'
2828
java-version: '11'
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333
- name: Build jars

athena-oracle/src/test/java/com/amazonaws/athena/connectors/oracle/OracleMetadataHandlerTest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,12 +306,13 @@ public void testDoGetSplits_withQueryPassthrough()
306306
passthroughArgs.put("arg1", "val1");
307307
passthroughArgs.put("arg2", "val2");
308308

309-
Constraints queryconstraints = new Constraints(
309+
Constraints constraints = new Constraints(
310310
Collections.emptyMap(),
311311
Collections.emptyList(),
312312
Collections.emptyList(),
313313
DEFAULT_NO_LIMIT,
314-
passthroughArgs
314+
passthroughArgs,
315+
null
315316
);
316317

317318
Block partitions = Mockito.mock(Block.class);
@@ -323,7 +324,7 @@ public void testDoGetSplits_withQueryPassthrough()
323324
tableName,
324325
partitions,
325326
Collections.emptyList(),
326-
queryconstraints,
327+
constraints,
327328
null
328329
);
329330

0 commit comments

Comments
 (0)