Compare commits

..

2 Commits

Author SHA1 Message Date
23e65c4014 Merge pull request 'Pin dependencies' (#15) from renovate/pin-dependencies into main
All checks were successful
Remote Deployment Pipeline / Prepare Context (push) Successful in 3s
Remote Deployment Pipeline / Deploy (Staging) (push) Successful in 46s
Remote Deployment Pipeline / Deploy (Dev/Preview) (push) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (push) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (push) Successful in 47s
Reviewed-on: #15
2025-11-30 21:18:22 +01:00
de7c379fe2 Pin dependencies
All checks were successful
Remote Deployment Pipeline / Prepare Context (pull_request) Successful in 3s
Remote Deployment Pipeline / Deploy (Staging) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Dev/Preview) (pull_request) Has been skipped
Remote Deployment Pipeline / Deploy (Production) (pull_request) Has been skipped
Remote Deployment Pipeline / Cleanup Preview (pull_request) Successful in 9s
2025-11-30 03:23:40 +00:00

View File

@@ -46,10 +46,10 @@ jobs:
needs: [prepare_context] needs: [prepare_context]
if: github.event_name == 'pull_request' && github.event.action != 'closed' if: github.event_name == 'pull_request' && github.event.action != 'closed'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Deploy via Rsync & Docker - name: Deploy via Rsync & Docker
uses: easingthemes/ssh-deploy@v5.0.0 uses: easingthemes/ssh-deploy@16bb35ed0b6e568fa7554ebdf990fdc4c046b549 # v5.0.0
env: env:
SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }} SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }}
REMOTE_HOST: ${{ env.SSH_HOST }} REMOTE_HOST: ${{ env.SSH_HOST }}
@@ -75,10 +75,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Deploy via Rsync & Docker - name: Deploy via Rsync & Docker
uses: easingthemes/ssh-deploy@v5.0.0 uses: easingthemes/ssh-deploy@16bb35ed0b6e568fa7554ebdf990fdc4c046b549 # v5.0.0
env: env:
SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }} SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }}
REMOTE_HOST: ${{ env.SSH_HOST }} REMOTE_HOST: ${{ env.SSH_HOST }}
@@ -102,10 +102,10 @@ jobs:
needs: [deploy_staging] needs: [deploy_staging]
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Deploy via Rsync & Docker - name: Deploy via Rsync & Docker
uses: easingthemes/ssh-deploy@v5.0.0 uses: easingthemes/ssh-deploy@16bb35ed0b6e568fa7554ebdf990fdc4c046b549 # v5.0.0
env: env:
SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }} SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }}
REMOTE_HOST: ${{ env.SSH_HOST }} REMOTE_HOST: ${{ env.SSH_HOST }}
@@ -130,7 +130,7 @@ jobs:
if: github.event_name == 'pull_request' && (github.event.action == 'closed' || github.event.pull_request.merged == true) if: github.event_name == 'pull_request' && (github.event.action == 'closed' || github.event.pull_request.merged == true)
steps: steps:
- name: Remove Remote Environment - name: Remove Remote Environment
uses: appleboy/ssh-action@v1.0.3 uses: appleboy/ssh-action@029f5b4aeeeb58fdfe1410a5d17f967dacf36262 # v1.0.3
with: with:
host: ${{ env.SSH_HOST }} host: ${{ env.SSH_HOST }}
username: ${{ env.SSH_USER }} username: ${{ env.SSH_USER }}