Skip to content

Commit

Permalink
Bump download and upload-artifact to v3 (#620) (#621)
Browse files Browse the repository at this point in the history
https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/

(cherry picked from commit 14ffee9)

Signed-off-by: Marc Handalian <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit 2ac7af6)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Sep 17, 2024
1 parent 68e7110 commit 4491e19
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- 11
- 17
# Job name
name: Build Asynchronous Search
name: Linux - Build Asynchronous Search
# This job runs on Linux.
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
./gradlew integTest -Dtests.rest.cluster=localhost:9200 -Dtests.cluster=localhost:9200 -Dtests.clustername="docker-cluster"
fi
- name: Upload failed logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: logs
Expand All @@ -101,7 +101,7 @@ jobs:
path: asynchronous-search-artifacts
windows-build:
# Job name
name: Build Asynchronous Search
name: Windows - Build Asynchronous Search
# This job runs on Windows.
runs-on: windows-latest
steps:
Expand All @@ -123,13 +123,13 @@ jobs:
cp ./build/distributions/*.zip asynchronous-search-artifacts
# This step uses the upload-artifact Github action: https://github.com/actions/upload-artifact
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: asynchronous-search-plugin-windows
path: asynchronous-search-artifacts
mac-os-build:
# Job name
name: Build Asynchronous Search
name: MacOS - Build Asynchronous Search
# This job runs on Mac OS.
runs-on: macos-latest
steps:
Expand All @@ -151,7 +151,7 @@ jobs:
cp ./build/distributions/*.zip asynchronous-search-artifacts
# This step uses the upload-artifact Github action: https://github.com/actions/upload-artifact
- name: Upload Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: asynchronous-search-plugin-mac
path: asynchronous-search-artifacts
2 changes: 1 addition & 1 deletion .github/workflows/multi-node-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
echo "Running backwards compatibility tests ..."
./gradlew bwcTestSuite -Dtests.security.manager=false
- name: Upload failed logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: logs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
asset_content_type: application/zip

- name: Upload Workflow Artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: asynchronous-search-plugin
path: asynchronous-search-artifacts
Expand Down

0 comments on commit 4491e19

Please sign in to comment.