diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 16:08:04 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 16:08:04 +0100 |
commit | 45871ddfc46e885e52cf6b28bb6d2dc12dc88e69 (patch) | |
tree | 99298589db2e1fa5b9d04189f736e3421661c084 /.github | |
parent | make .gitattributes more consistent (diff) | |
download | sorting-algorithms-45871ddfc46e885e52cf6b28bb6d2dc12dc88e69.tar.gz sorting-algorithms-45871ddfc46e885e52cf6b28bb6d2dc12dc88e69.zip |
workflows/jekyll: upgrade actions
Diffstat (limited to '.github')
-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 44430b3..fa9137d 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -14,7 +14,7 @@ jobs: name: Deploy steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: @@ -27,7 +27,7 @@ jobs: nohup make serve & sleep 3 && make wget - name: Set up ssh-agent - uses: webfactory/ssh-agent@v0.5.3 + uses: webfactory/ssh-agent@v0.7.0 with: ssh-private-key: '${{ secrets.REMOTE_SSH_KEY }}' - name: Deploy |