diff options
author | Christoph Settgast <csett86_git@quicksands.de> | 2024-03-10 21:44:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-10 21:44:56 +0100 |
commit | edc4b67bed867188277bbfe806a75755929e1f9d (patch) | |
tree | 88e45ebaa96fa397f726b57b3808715a46f24bde /.github | |
parent | 5ac99bbbe6989ca18702511203175c61b2f413bd (diff) |
ci: use node lts (20 as of now) (#954)
* ci: really use node lts (20 as of now)
* cleanup README
Remove outdated information, bump to node 20 as well
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index faf88ec..9dab318 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '20' - name: Build it env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -43,7 +43,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '20' - name: Prepare for app signing and notarization env: MAC_CERT_PASSWORD: ${{ secrets.mac_cert_password }} @@ -75,7 +75,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '20' - name: Build it env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |