diff options
author | Matthew Miller <matthew@millerti.me> | 2022-05-18 16:43:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 16:43:15 -0700 |
commit | ad04abbc9c7edb3650a98ceca5580dbaf408dc61 (patch) | |
tree | ee0da4b5ac7041f105113c6881aa3db29adbfae7 | |
parent | 06b3244dcd9b10724f957e58bd13a89b9063c4d6 (diff) |
Update action dependencies
-rw-r--r-- | .github/workflows/node.js.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 9a20f62..f1a3c6f 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -19,9 +19,9 @@ jobs: node-version: [lts/*, current] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v2.2.0 with: node-version: ${{ matrix.node-version }} - run: npm i |