Switched Actions to another branch

master
Marcus Bakker 2020-07-23 13:49:32 +02:00
parent c9780399ce
commit 1e757830cf
2 changed files with 3 additions and 3 deletions

View File

@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out the repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@master
- uses: actions/checkout@v2
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
# set up NodeJS
- uses: actions/setup-node@master
- uses: actions/setup-node@main
- name: Install project dependencies
run: npm install

View File

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@master
- uses: actions/checkout@v2
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo