Skip to content

Commit

Permalink
GHA checkout action v2 is deprecated (#135) (#136)
Browse files Browse the repository at this point in the history
The GitHub Actions checkout action v2 is deprecated and needs to move to
version 3.

(cherry picked from commit df23d63)
  • Loading branch information
leifmadsen authored Feb 28, 2023
1 parent 9fbf00f commit 7b6d580
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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 .
Expand All @@ -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
Expand Down

0 comments on commit 7b6d580

Please sign in to comment.