From 13da164ee12fc262bd51cb29582e91c6457c709e Mon Sep 17 00:00:00 2001 From: Christoph Deppisch Date: Mon, 21 Aug 2023 15:44:59 +0200 Subject: [PATCH] chore: Use nodejs 16 nodejs12 is deprecated in GitHub actions for quite some time --- .github/workflows/test.yaml | 6 +++--- action.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f7810ed..fe4ee7d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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: ./ @@ -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: ./ @@ -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: diff --git a/action.yml b/action.yml index d7cda78..0cfe561 100644 --- a/action.yml +++ b/action.yml @@ -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"