diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8209827..5e76ef2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,11 +11,11 @@ jobs: name: Build steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: make build/docker - name: Publish as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cv path: cv/cv.pdf @@ -23,7 +23,7 @@ jobs: - name: Clean up run: sudo make clean - name: Set up ssh-agent - uses: webfactory/ssh-agent@v0.7.0 + uses: webfactory/ssh-agent@v0.8.0 with: ssh-private-key: '${{ secrets.REMOTE_SSH_KEY }}' - name: Deploy |