- upgrade to node20 for the GitHub actions

- remove node-fetch as it is no longer required with node 20
- upgrade actions to use node20
This commit is contained in:
Mike Penz
2023-09-04 13:52:54 +00:00
committed by GitHub
parent dc8bed188d
commit 512b4d3a42
11 changed files with 110 additions and 197 deletions
+3 -3
View File
@@ -25,12 +25,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Node.js 16.x
- name: Set Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
- name: Build Action
run: |
+5 -5
View File
@@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set Node.js 16.x
- name: Set Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x
- name: Install NPM
run: |
@@ -79,7 +79,7 @@ jobs:
run: echo "CHANGELOG"
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
@@ -170,7 +170,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Build Changelog"
id: github_release
+2 -2
View File
@@ -43,9 +43,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with: