diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 23:57:23 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 00:23:14 +0100 |
commit | d353ecda2443c1d1a6cfdc24951d63618edeecd7 (patch) | |
tree | 96b72f7569da5d72ce14505ead17e576b8b442c8 /.github/workflows | |
parent | bump versions (diff) | |
download | jekyll-docker-d353ecda2443c1d1a6cfdc24951d63618edeecd7.tar.gz jekyll-docker-d353ecda2443c1d1a6cfdc24951d63618edeecd7.zip |
workflows/ci: upgrade actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91e753a..80334e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,11 @@ jobs: name: Local build steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: src - name: Checkout Jekyll project - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: '${{ env.JEKYLL_PROJECT_AUTHOR }}/${{ env.JEKYLL_PROJECT_NAME }}' path: '${{ env.JEKYLL_PROJECT_NAME }}' @@ -67,11 +67,11 @@ jobs: - name: Docker is accessible as regular user run: docker ps - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: src - name: Checkout Jekyll project - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: '${{ env.JEKYLL_PROJECT_AUTHOR }}/${{ env.JEKYLL_PROJECT_NAME }}' path: '${{ env.JEKYLL_PROJECT_NAME }}' @@ -124,11 +124,11 @@ jobs: - name: sudo makes root run: test "$( sudo id -u )" = 0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: src - name: Checkout Jekyll project - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: '${{ env.JEKYLL_PROJECT_AUTHOR }}/${{ env.JEKYLL_PROJECT_NAME }}' path: '${{ env.JEKYLL_PROJECT_NAME }}' |