diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e48fadc79..a728e5e9fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,18 +12,18 @@ jobs: name: Build HTML runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: install Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: 3.12 - name: install Python dependencies run: python -m pip install -r requirements.txt - name: build site - run: ./deploy.sh + run: ./deploy.sh env: git_hash: ${{ github.sha }} DEPLOY_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}