From 9c8281e06ca26dfec79a283d5d159c6e5150515b Mon Sep 17 00:00:00 2001 From: Pavel Abramov Date: Mon, 23 Oct 2023 17:29:18 +0200 Subject: [PATCH] Use checkout@3.5.3 version to pull correct code tag, not master 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 --- .github/workflows/test.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 157c6fd2c..73d232bf3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: runs-on: ${{ needs.determine-runner.outputs.runner }} steps: - name: Get code - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.3 with: repository: "lf-edge/eden" path: "./eden" @@ -55,7 +55,7 @@ jobs: runs-on: ${{ needs.determine-runner.outputs.runner }} steps: - name: Get code - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.3 with: repository: "lf-edge/eden" path: "./eden" @@ -77,7 +77,8 @@ jobs: runs-on: ${{ needs.determine-runner.outputs.runner }} steps: - name: Get code - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.3 + uses: actions/checkout@v3 with: repository: "lf-edge/eden" path: "./eden" @@ -95,7 +96,7 @@ jobs: runs-on: ${{ needs.determine-runner.outputs.runner }} steps: - name: Get code - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.3 with: repository: "lf-edge/eden" path: "./eden" @@ -117,7 +118,7 @@ jobs: runs-on: ${{ needs.determine-runner.outputs.runner }} steps: - name: Get code - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.3 with: repository: "lf-edge/eden" path: "./eden" @@ -135,7 +136,7 @@ jobs: runs-on: ${{ needs.determine-runner.outputs.runner }} steps: - name: Get code - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.3 with: repository: "lf-edge/eden" path: "./eden"