Skip to content

Commit

Permalink
Update PR checks to use newer versions
Browse files Browse the repository at this point in the history
Signed-off-by: Dinakar Guniguntala <[email protected]>
  • Loading branch information
dinogun committed Jan 9, 2025
1 parent 74ec0a8 commit d6a2159
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test_on_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build hpo
run: |
echo Software versions
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: hpo-results
path: ./hpo_docker_results.tar
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Minikube
uses: manusa/[email protected]
with:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
ls
- name: Upload results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: hpo-results
path: ./hpo_minikube_results.tar
Expand All @@ -109,7 +109,7 @@ jobs:
test_on_native:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Sanity test on native
run: |
echo Software versions
Expand All @@ -127,7 +127,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: hpo-results
path: ./hpo_native_results.tar
Expand All @@ -136,7 +136,7 @@ jobs:
grpc_test_on_native:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: GRPC Sanity test on native
run: |
echo Software versions
Expand All @@ -154,7 +154,7 @@ jobs:
- name: Upload results
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: hpo-results
path: ./hpo_grpc_native_results.tar
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_on_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build hpo
run: |
echo Build hpo
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: hpo-results
path: ./hpo_docker_results.tar
Expand All @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Minikube
uses: manusa/[email protected]
with:
Expand All @@ -91,7 +91,7 @@ jobs:
ls
- name: Upload results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: hpo-results
path: ./hpo_minikube_results.tar
Expand Down

0 comments on commit d6a2159

Please sign in to comment.