Skip to content

Commit

Permalink
chore: Use nodejs 16
Browse files Browse the repository at this point in the history
nodejs12 is deprecated in GitHub actions for quite some time
  • Loading branch information
christophd committed Aug 21, 2023
1 parent cd9aaae commit 13da164
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Install Camel K
uses: ./
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Install Camel K
uses: ./
Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Install Camel K
with:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ inputs:
github_token:
description: "Optional token used when fetching the latest Camel K release to avoid hitting rate limits"
runs:
using: "node12"
using: "node16"
main: "main.js"

0 comments on commit 13da164

Please sign in to comment.