diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-30 23:28:45 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-30 23:28:45 +1100 |
commit | 28a309bcdc8a187b64bac70525663bf86c2ed868 (patch) | |
tree | 12cc586ba5d7299df0fc6947c6f5c793449cbcce | |
parent | Fix new roles having duplicate positions (diff) | |
download | server-28a309bcdc8a187b64bac70525663bf86c2ed868.tar.xz |
Update build workflow to use v3 checkout and setup-node
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8a9cee7..e3bcc81f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,9 +17,9 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' |