From bf09d521849fef39d3f0a93855340c357f2d5247 Mon Sep 17 00:00:00 2001 From: Gavin Patton Date: Thu, 18 May 2023 09:14:21 +0100 Subject: [PATCH] (CONT-985) Address deprecation warnings Prior to this commit, there were deprecation warnings in the github action workflows regarding use of checkout@v2. This commit uses 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 2d665b03..815c2451 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: ${{ github.repository_owner == 'puppetlabs' }} - name: Activate Ruby 2.7 @@ -63,7 +63,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 4a2c7cae..4878d009 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: ${{ github.repository_owner == 'puppetlabs' }} - name: Activate Ruby 2.7 @@ -61,7 +61,7 @@ jobs: steps: - name: Checkout Source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Activate Ruby 2.7 uses: ruby/setup-ruby@v1