diff options
author | Egor Tensin <egor@tensin.name> | 2024-01-28 12:37:40 +0100 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2024-01-28 12:37:40 +0100 |
commit | 4ce8a4b9622c319877bc03857a386fc709e016d9 (patch) | |
tree | 5555745afed081b4ddbb1e0399c5c53f9f0c34c7 | |
parent | bump dependencies (diff) | |
download | egor-tensin.github.io-4ce8a4b9622c319877bc03857a386fc709e016d9.tar.gz egor-tensin.github.io-4ce8a4b9622c319877bc03857a386fc709e016d9.zip |
workflows/jekyll: upgrade actions
-rw-r--r-- | .github/workflows/jekyll.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 6a3c646..4509942 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -13,7 +13,7 @@ jobs: name: Deploy steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: @@ -25,7 +25,7 @@ jobs: nohup make serve LIVE_RELOAD=0 & sleep 3 && make wget - 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 |