From 8b27bc3a0fe0a37c5cecdc7f0c8837c7fffc8d67 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 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 157c6fd2c..b0749fa73 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,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" @@ -95,7 +95,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 +117,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 +135,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"