From 9ecd05dbf404a83950d97b2211fe9ed0d113af7a Mon Sep 17 00:00:00 2001 From: Leif Madsen Date: Tue, 28 Feb 2023 09:08:35 -0500 Subject: [PATCH] GHA checkout action v2 is deprecated The GitHub Actions checkout action v2 is deprecated and needs to move to version 3. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e8fe92d..9ca7c1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Ansible run: python -m pip install 'ansible <= 2.9' @@ -43,7 +43,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Verify image builds run: docker build --tag infrawatch/smart-gateway-operator:latest --file build/Dockerfile . @@ -54,7 +54,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get operator-sdk image run: curl --output operator-sdk -JL https://github.com/operator-framework/operator-sdk/releases/download/$RELEASE_VERSION/operator-sdk-$RELEASE_VERSION-x86_64-linux-gnu