diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ee5cd980ec4..dcb14b7ae6d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,10 +9,10 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python 3 - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: '3.x' diff --git a/.github/workflows/render.yml b/.github/workflows/render.yml index c208e91c5e8..36b32534186 100644 --- a/.github/workflows/render.yml +++ b/.github/workflows/render.yml @@ -9,12 +9,12 @@ jobs: steps: - name: 🛎️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 # fetch all history so that last modified date-times are accurate - name: 🐍 Set up Python 3 - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: '3.x' cache: "pip" @@ -39,3 +39,10 @@ jobs: branch: gh-pages # The branch to deploy to. folder: build # Synchronise with build.py -> build_directory single-commit: true # Delete existing files + + - name: 📦 Upload built PEPs as zipped artifact + uses: actions/upload-artifact@v3 + with: + name: peps + path: build + retention-days: 7