From 0912ae299c6b9e21c92a6570ca85a92ba3aa5a37 Mon Sep 17 00:00:00 2001 From: Gavin Patton Date: Wed, 17 May 2023 14:08:37 +0100 Subject: [PATCH] (CONT-903) Use checkout@v3 Prior to this commit, deprecation warnings were present in the nightly and ci workflows due to checkout v2 being used rather than v3. This commit updates to v3. --- .github/workflows/ci.yml | 4 ++-- .github/workflows/nightly.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae305216c..70ee26273 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Activate Ruby 2.7 uses: ruby/setup-ruby@v1 @@ -58,7 +58,7 @@ jobs: steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Activate Ruby 2.7 uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 392a42cb7..29f22a679 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Activate Ruby 2.7 uses: ruby/setup-ruby@v1 @@ -57,7 +57,7 @@ jobs: steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Activate Ruby 2.7 uses: ruby/setup-ruby@v1