diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:35:34 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:35:34 +0200 |
commit | 91747d1e13561964cf516ea590dbebceef54930f (patch) | |
tree | 3554b5b66949f8a11c53623e336d12ae4d88630e | |
parent | workflows/build: fix remote port (diff) | |
download | cv-91747d1e13561964cf516ea590dbebceef54930f.tar.gz cv-91747d1e13561964cf516ea590dbebceef54930f.zip |
workflows/build: upgrade actions
Diffstat (limited to '')
-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 eef3f07..c7a3fe6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,11 +11,11 @@ jobs: name: Build steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build run: make build/docker - name: Publish as artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cv path: cv/cv.pdf @@ -23,7 +23,7 @@ jobs: - name: Clean up run: sudo make clean - name: Publish to GitHub Pages - uses: JamesIves/github-pages-deploy-action@4.1.0 + uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages folder: cv |