ci: Bump actions/checkout to v3

This commit is contained in:
Richard Hansen 2022-03-01 17:17:16 -05:00
parent b2b6acfe5f
commit a6b969c811
14 changed files with 25 additions and 25 deletions

View file

@ -19,7 +19,7 @@ jobs:
steps:
-
name: Check out latest release
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: master
-
@ -64,7 +64,7 @@ jobs:
-
name: Run the backend tests
run: cd src && npm test
# Because actions/checkout@v2 is called with "ref: master" and without
# Because actions/checkout@v3 is called with "ref: master" and without
# "fetch-depth: 0", the local clone does not have the ${GITHUB_SHA}
# commit. Fetch ${GITHUB_REF} to get the ${GITHUB_SHA} commit. Note that a
# plain "git fetch" only fetches "normal" references (refs/heads/* and