Skip to content

Commit

Permalink
Update actions versions
Browse files Browse the repository at this point in the history
actions/checkout@v2 ->actions/checkout@v4
actions/setup-node@v1 -> actions/setup-node@v4

node-version 14 -> 20
  • Loading branch information
katilp committed Mar 27, 2024
1 parent 0c0afc4 commit 41ea898
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Runs shell script static analysis
run: |
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
Expand All @@ -31,9 +31,9 @@ jobs:
python-version: 3.8

- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: "14"
node-version: "20"

- name: Install project dependences
run: |
Expand Down

0 comments on commit 41ea898

Please sign in to comment.