From fc1ec1d3558641fadff513013afe6dd385cfbade Mon Sep 17 00:00:00 2001 From: Christian Specht Date: Tue, 16 May 2023 00:23:46 +0200 Subject: [PATCH] update to Node 16 actions https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ The new branch-name action came from here: https://github.com/nelonoel/branch-name/issues/15 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51da6d6..772f6e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,8 +16,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: nelonoel/branch-name@v1.0.1 + - uses: actions/checkout@v3 + - uses: Wohlstand/branch-name@v1.0.1-wohl - name: Build site run: | docker run \ @@ -43,7 +43,7 @@ jobs: echo "${{ secrets.KEY }}" > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan ${{ secrets.HOST }} >> ~/.ssh/known_hosts - - uses: nelonoel/branch-name@v1.0.1 + - uses: Wohlstand/branch-name@v1.0.1-wohl - name: Run deploy script run: | rsync -rSlh --stats build/ ${{ secrets.USERNAME }}@${{ secrets.HOST }}:${{ secrets.WEBPATH }}-${{ env.BRANCH_NAME }}/tar