Skip to content

Commit

Permalink
Merge pull request #93 from lekaf974/chore/bump-checkout-version-to-4
Browse files Browse the repository at this point in the history
chore: Bump actions/checkout to v4
  • Loading branch information
leecalcote committed Sep 18, 2024
2 parents a040ce5 + b810b10 commit 47cbc09
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
device_id: ${{ steps.start-cil-runner.outputs.device_id }}
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Configure CNCF CIL credentials
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
kubectl get po -A
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Service Mesh and Deploy Application
run: |
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Stop CNCF CIL runner
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/configurable-benchmark-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
driver: docker

- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Service Mesh and Deploy Application
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/scheduled-benchmarks-self-hosted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
github_run_id: ${{ env.GITHUB_RUN_ID }} # use this github_run_id as a suffix for CIL machines and runners
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Configure CNCF CIL credentials
run: |
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
kubectl get po -A
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4


- name: Install Service Mesh and Deploy Application
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
if: ${{ always() && github.event_name == 'workflow_dispatch' }} # required to stop the runner even if the error happened in the previous jobs
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Stop CNCF CIL runner
run: |
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
github_run_id: ${{ env.GITHUB_RUN_ID }} # use this github_run_id as a suffix for CIL machines and runners
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Configure CNCF CIL credentials
run: |
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
kubectl get po -A
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Service Mesh and Deploy Application
run: |
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
if: ${{ always() && github.event_name == 'schedule' }} # required to stop the runner even if the error happened in the previous jobs
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Stop CNCF CIL runner
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduled-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
driver: docker

- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Service Mesh and Deploy Application
run: |
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
driver: docker

- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Service Mesh and Deploy Application
run: |
Expand Down

0 comments on commit 47cbc09

Please sign in to comment.