Skip to content

Commit

Permalink
Bump actions checkout to v4
Browse files Browse the repository at this point in the history
Bump actions checkout to v4 since Node.js 16 actions are deprecated.
We need to update to Node.js 20, which is included in actions/checkout@v4.

Also bumped helm kind-action to v1.10.0.
  • Loading branch information
vkmc committed Apr 29, 2024
1 parent a7df4e6 commit 5687756
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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@v3
uses: actions/checkout@v4.1.3

- name: Install Ansible
run: python -m pip install 'ansible <= 2.9'
Expand All @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3

- name: Verify image builds
run: docker build --tag infrawatch/smart-gateway-operator:latest --file build/Dockerfile .
Expand All @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3

- name: Get operator-sdk image 0.19.4
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 Expand Up @@ -68,7 +68,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3

# prepare environment to buld the bundle
- name: Get operator-sdk image 0.19.4
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
run: operator-sdk-$RELEASE_VERSION bundle validate --verbose /tmp/bundle

- name: Create KinD cluster to execute scorecard tests
uses: helm/kind-action@v1.4.0
uses: helm/kind-action@v1.10.0

# perform scorecard checks against a KinD cluster
- name: Check scorecord validation
Expand Down

0 comments on commit 5687756

Please sign in to comment.