From 469a77e7aab9e9470ef225348fc4d7fb64c47be5 Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Fri, 27 Mar 2020 14:55:02 +0100 Subject: [PATCH] use actions/checkout@v2 for even faster deployments The actions/checkout@v2 action uses a checkout depth of 1 by default. There is no more need to set it manually. --- README.md | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index d6f41a3..f5250aa 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: rsync deployments uses: burnett01/rsync-deployments@4.0 with: @@ -66,7 +66,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: rsync deployments uses: burnett01/rsync-deployments@4.0 with: @@ -86,29 +86,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: rsync deployments - uses: burnett01/rsync-deployments@4.0 - with: - switches: -avzr --delete - path: src/ - remote_path: /var/www/html/ - remote_host: ${{ secrets.DEPLOY_HOST }} - remote_port: ${{ secrets.DEPLOY_PORT }} - remote_user: ${{ secrets.DEPLOY_USER }} - remote_key: ${{ secrets.DEPLOY_KEY }} -``` - -For maximum speed limit the checkout action (``actions/checkout@v1``) to a depth of 2: - -``` -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - with: - fetch-depth: 2 + - uses: actions/checkout@v2 - name: rsync deployments uses: burnett01/rsync-deployments@4.0 with: