Bump GitHub Actions (#786)

Signed-off-by: Hugo van Kemenade <[email protected]>
This commit is contained in:
Hugo van Kemenade
2024-07-20 16:20:43 -04:00
committed by GitHub
parent 6e3f1a1194
commit e3005b8cff
13 changed files with 37 additions and 37 deletions
+3 -3
View File
@@ -12,7 +12,7 @@ jobs:
steps:
- name: Checkout OpenSearch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: opensearch-project/opensearch
ref: ${{ matrix.opensearch_ref }}
@@ -30,7 +30,7 @@ jobs:
path: opensearch/distribution/archives/linux-tar/build/distributions
key: ${{ steps.get-key.outputs.key }}
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '11'
@@ -55,7 +55,7 @@ jobs:
for attempt in {1..20}; do sleep 5; if curl -s localhost:9200; then echo '=====> ready'; break; fi; echo '=====> waiting...'; done
- name: Checkout Python Client
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: opensearch-py