From 908bcc88fd3d5271a452c483ba027f73866bd5c3 Mon Sep 17 00:00:00 2001 From: Sergio Arroutbi Date: Tue, 13 Feb 2024 13:01:03 +0100 Subject: [PATCH] Use latest checkout action version (v4) Use latest checkout action version (v4) to avoid Node16 related issues Resolves: #71 Signed-off-by: Sergio Arroutbi --- .github/workflows/awstest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/awstest.yml b/.github/workflows/awstest.yml index 4047d21..3aa1f04 100644 --- a/.github/workflows/awstest.yml +++ b/.github/workflows/awstest.yml @@ -16,7 +16,7 @@ jobs: # check out the PR branch # we run tests against the code in the PR branch # --------------------------- - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} @@ -27,7 +27,7 @@ jobs: # check out the target branch # all CI scripts that use secrets come from the target branch # --------------------------- - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: path: 'target-branch'