diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-01 17:19:45 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-01 17:19:45 -0700 |
commit | d3152e3dbcda30859656bad7e7c8122505819887 (patch) | |
tree | ad6e755773337f53dec70db9fe05ce69bc3f2ef9 /.github | |
parent | 414d102c35b9f043e42ac5a207da725cba3b2653 (diff) | |
download | sncontinue-d3152e3dbcda30859656bad7e7c8122505819887.tar.gz sncontinue-d3152e3dbcda30859656bad7e7c8122505819887.tar.bz2 sncontinue-d3152e3dbcda30859656bad7e7c8122505819887.zip |
use nodejs version 19.0.0
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yaml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 5fad9a78..50de687e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -46,13 +46,16 @@ jobs: publish: # needs: pyinstaller runs-on: ubuntu-latest - container: - image: node:16-buster steps: - name: Checkout uses: actions/checkout@v2 + - name: Use Node.js 19.0.0 + uses: actions/setup-node@v3 + with: + node-version: 19.0.0 + - name: Cache extension node_modules uses: actions/cache@v2 with: |