From f7ce5f641b84a6e3f4589469ebafc0ada453e019 Mon Sep 17 00:00:00 2001 From: Hayato Ito Date: Sat, 17 Feb 2024 13:45:00 +0900 Subject: [PATCH] Bump versions --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8778662..bb9af5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,10 +19,10 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache site id: cache-site - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./cache key: ${{ runner.os }}-cache-site-${{ hashFiles('.env') }} @@ -38,13 +38,13 @@ jobs: run: ./cache/site build --root-dir . --config=config-release.toml --out-dir ./out - name: Setup Pages if: github.event_name == 'push' - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v4 - name: Upload artifact if: github.event_name == 'push' - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: './out' - name: Deploy to GitHub Pages if: github.event_name == 'push' id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4