Changed versions for actions/checkout and actions/setup-node

This commit is contained in:
Andrew Lee 2022-12-08 15:28:28 -05:00
parent f1cdc52a24
commit 27e875fab5
Signed by: andrew
GPG key ID: 4DCE67C47836D125

View file

@ -26,10 +26,10 @@ jobs:
run: sudo apt install --no-install-recommends -y libopenjp2-tools rpm libarchive-tools run: sudo apt install --no-install-recommends -y libopenjp2-tools rpm libarchive-tools
- name: Check out Git repository - name: Check out Git repository
uses: actions/checkout@v1 uses: actions/checkout@v3
- name: Install Node.js, NPM and Yarn - name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1 uses: actions/setup-node@v3
with: with:
node-version: 16 node-version: 16
@ -48,4 +48,4 @@ jobs:
# release the app after building # release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }} release: ${{ startsWith(github.ref, 'refs/tags/v') }}