Bump golang.org/x/crypto from 0.31.0 to 0.45.0 in /StoreHUB-auth #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # name: Deploy to EC2 | |
| # on: | |
| # push: | |
| # branches: | |
| # - main # Change this if you use a different branch for deployment | |
| # jobs: | |
| # deploy: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Deploy to EC2 via SSH | |
| # uses: appleboy/ssh-action@v0.1.5 | |
| # with: | |
| # host: ${{ secrets.EC2_HOST }} | |
| # username: ${{ secrets.EC2_USER }} | |
| # key: ${{ secrets.EC2_SSH_KEY }} | |
| # script: | | |
| # cd /home/ubuntu/StoreHUB | |
| # sudo git pull origin main | |
| # cd StoreHUB-auth | |
| # sudo docker-compose up --build -d |