From cc5f340c379edc06e51a99850166015fb39341d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 05:42:53 +0000 Subject: [PATCH] Bump appleboy/ssh-action from 1.0.2 to 1.0.3 Bumps [appleboy/ssh-action](https://github.com/appleboy/ssh-action) from 1.0.2 to 1.0.3. - [Release notes](https://github.com/appleboy/ssh-action/releases) - [Commits](https://github.com/appleboy/ssh-action/compare/v1.0.2...v1.0.3) --- updated-dependencies: - dependency-name: appleboy/ssh-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 24ab04d45..bd6c62d59 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -155,7 +155,7 @@ jobs: - name: ssh into remote dev server for develop branch if: endsWith(github.ref, '/develop') - uses: appleboy/ssh-action@v1.0.2 + uses: appleboy/ssh-action@v1.0.3 with: host: ${{ env.HOST }} username: ${{ env.USERNAME }} @@ -168,7 +168,7 @@ jobs: - name: ssh into remote dev server for beta tag if: endsWith(github.ref, '-beta') - uses: appleboy/ssh-action@v1.0.2 + uses: appleboy/ssh-action@v1.0.3 with: host: ${{ env.HOST }} username: ${{ env.USERNAME }} @@ -184,7 +184,7 @@ jobs: - name: ssh into remote production server if: startsWith(github.ref, 'refs/tags/v') && !endsWith(github.ref, '-beta') - uses: appleboy/ssh-action@v1.0.2 + uses: appleboy/ssh-action@v1.0.3 with: host: ${{ env.HOST }} username: ${{ env.USERNAME }} @@ -199,7 +199,7 @@ jobs: ./deploy.sh $version - name: Build JS - uses: appleboy/ssh-action@v1.0.2 + uses: appleboy/ssh-action@v1.0.3 with: host: ${{ env.HOST }} username: ${{ env.USERNAME }}