Skip to content

Commit eb09e5d

Browse files
committed
Adding v4 actions as v2 and v3 are deprecated
Signed-off-by: Mohit Kumar <mohitamg@amazon.com>
1 parent ba77db0 commit eb09e5d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/actions/create-bwc-build/action.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ runs:
2525
with:
2626
path: ${{ inputs.plugin-branch }}
2727

28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
if: ${{ inputs.plugin-branch != 'current_branch' }}
3030
with:
3131
repository: opensearch-project/custom-codecs
3232
ref: ${{ inputs.plugin-branch }}
3333
path: ${{ inputs.plugin-branch }}
3434

3535
- name: Build
36-
uses: gradle/gradle-build-action@v3
36+
uses: gradle/gradle-build-action@v4
3737
with:
3838
cache-disabled: true
3939
arguments: assemble

.github/actions/run-bwc-suite/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
plugin-branch: ${{ inputs.plugin-next-branch }}
3838

3939
- name: Run BWC tests
40-
uses: gradle/gradle-build-action@v3
40+
uses: gradle/gradle-build-action@v4
4141
with:
4242
cache-disabled: true
4343
arguments: |

.github/workflows/check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v4
4646
- name: Set up JDK ${{ matrix.java }}
47-
uses: actions/setup-java@v3
47+
uses: actions/setup-java@v4
4848
with:
4949
java-version: ${{ matrix.java }}
5050
distribution: temurin

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v4
2626

2727
- name: Build BWC tests
28-
uses: gradle/gradle-build-action@v3
28+
uses: gradle/gradle-build-action@v4
2929
with:
3030
cache-disabled: true
3131
arguments: |

.github/workflows/publish-maven-snapshots.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
contents: write
1818

1919
steps:
20-
- uses: actions/setup-java@v3
20+
- uses: actions/setup-java@v4
2121
with:
2222
distribution: temurin
2323
java-version: 21
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- uses: aws-actions/configure-aws-credentials@v1
2626
with:
2727
role-to-assume: ${{ secrets.PUBLISH_SNAPSHOTS_ROLE }}

0 commit comments

Comments
 (0)