Skip to content

Commit

Permalink
Update artifact actions version to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyabiradar07 committed Jan 23, 2025
1 parent 90cd01b commit 3b92e51
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/get-pr-number.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
output1: ${{ steps.pr.outputs.pr_number }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get PR number
id: pr
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rm-release-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
releasetest:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Minikube
uses: manusa/[email protected]
with:
minikube version: 'v1.16.0'
kubernetes version: 'v1.19.2'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: kruize/autotune
path: autotune
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: kruize_test_results
path: ./kruize_test_results.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-comment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: kruize_test_results
path: ./kruize_test_results.tar
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: kruize/autotune
- name: Setup Minikube
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crc-results
path: ./crc_results.tar
Expand All @@ -81,7 +81,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Minikube
uses: manusa/[email protected]
with:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crc-manifest-results
path: ./crc_manifest_results.tar
Expand All @@ -133,7 +133,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: kruize/autotune
- name: Setup Minikube
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: kruize-build-crc-lm-test-results
path: ./kruize_build_crc_lm_test_results.tar
Expand All @@ -194,7 +194,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Minikube
uses: manusa/[email protected]
with:
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: kruize-local-monitoring-test-results
path: ./kruize_local_monitoring_test_results.tar
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-on-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get PR number
run: |
echo "PR_NUMBER=${{ needs.get_pr.outputs.pr_number }}" >> $GITHUB_ENV
Expand All @@ -53,7 +53,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get PR number
run: |
echo "PR_NUMBER=${{ needs.get_pr.outputs.pr_number }}" >> $GITHUB_ENV
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Upload results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crc-results
path: ./crc_results.tar
Expand Down

0 comments on commit 3b92e51

Please sign in to comment.