Skip to content

Commit

Permalink
Use checkout@3.5.3 version to pull correct code tag, not master
Browse files Browse the repository at this point in the history
Following on #910 we saw that EVE checks out Eden master
code and not code from tag from yml file and if master fails
tests are failing on EVE, which is undesirable

https://github.com/lf-edge/eve/actions/runs/6613253197/job/17960730583?pr=3516#step:2:474

Investigating it more turns out in version 3.5.3 of github checkout
action behaviour is what we need. Check #909 for more info

Signed-off-by: Pavel Abramov <uncle.decart@gmail.com>
  • Loading branch information
uncleDecart committed Feb 7, 2024
1 parent 0af365a commit 3a8c71a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3
with:
repository: "lf-edge/eden"
path: "./eden"
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3
with:
repository: "lf-edge/eden"
path: "./eden"
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3
with:
repository: "lf-edge/eden"
path: "./eden"
Expand All @@ -86,7 +86,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3
with:
repository: "lf-edge/eden"
path: "./eden"
Expand All @@ -108,7 +108,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3
with:
repository: "lf-edge/eden"
path: "./eden"
Expand All @@ -126,7 +126,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: Get code
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3
with:
repository: "lf-edge/eden"
path: "./eden"
Expand Down

0 comments on commit 3a8c71a

Please sign in to comment.