Skip to content

Commit 7007d6c

Browse files
authored
Merge pull request #61 from kiegroup/mareknovotny-upgraded-checkout-action
Upgraded actions/checkout to latest version to not warn about old Nodejs
2 parents 8ccaaf0 + 064b614 commit 7007d6c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.ci/actions/generate-app/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ runs:
2929
path: ./current-project
3030
ref: ${{ inputs.gh-pages-branch }}
3131
- name: Checkout chain-status repo
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v4
3333
with:
3434
repository: kiegroup/chain-status
3535
path: ./chain-status
36-
- uses: actions/setup-node@v1
36+
- uses: actions/setup-node@v4
3737
with:
38-
node-version: 14
38+
node-version: 20
3939
registry-url: https://registry.npmjs.org/
4040
- run: yarn
4141
shell: bash

.ci/actions/generate-data/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
using: "composite"
4848
steps:
4949
- name: Checkout chain-status repo
50-
uses: actions/checkout@v2
50+
uses: actions/checkout@v4
5151
with:
5252
path: ./chain-status
5353
ref: ${{ inputs.gh-pages-branch }}

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ inputs:
4141
description: "A comma separated list of branches to compare. Like `main,8.30.x,8.29.x`"
4242
required: false
4343
runs:
44-
using: "node16"
44+
using: "node20"
4545
main: "packages/action/dist/index.js"
4646
branding:
4747
icon: "box"

0 commit comments

Comments
 (0)