diff options
| author | 2023-05-06 18:31:01 +0100 | |
|---|---|---|
| committer | 2023-05-31 13:03:54 +0100 | |
| commit | 204248546fd1530e77580d8688dd4486a88e1aed (patch) | |
| tree | e6d44bb4efaa212bde76f57bf5603044cb5f3311 | |
| parent | Bump all deps to latest (diff) | |
Bump action step versions in CI
| -rw-r--r-- | .github/workflows/docs.yaml | 16 | ||||
| -rw-r--r-- | .github/workflows/lint-test.yaml | 6 | 
2 files changed, 9 insertions, 13 deletions
| diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 03e6bc96..bf0202a6 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -11,12 +11,11 @@ jobs:      runs-on: ubuntu-latest      steps: -      - uses: actions/checkout@v2 +      - uses: actions/checkout@v3        - name: Install Python Dependencies -        uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.2 +        uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.0          with: -          dev: true            python_version: "3.11"            install_args: "--extras async-rediscache --only main --only doc" @@ -24,7 +23,7 @@ jobs:          run: sphinx-build -nW -j auto -b html docs docs/build        - name: Upload Build Artifact -        uses: actions/upload-artifact@v2 +        uses: actions/upload-artifact@v3          with:            name: docs-latest            path: docs/build/* @@ -34,14 +33,13 @@ jobs:      runs-on: ubuntu-latest      steps: -      - uses: actions/checkout@v2 +      - uses: actions/checkout@v3          with:            fetch-depth: 0  # We need to check out the entire repository to find all tags        - name: Install Python Dependencies -        uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.2 +        uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.0          with: -          dev: true            python_version: "3.11"            install_args: "--extras async-rediscache" @@ -57,13 +55,13 @@ jobs:            rm -r docs/build/**/.doctrees        - name: Upload Build Artifact -        uses: actions/upload-artifact@v2 +        uses: actions/upload-artifact@v3          with:            name: docs            path: docs/build/*        - name: Deploy To GitHub Pages -        uses: JamesIves/[email protected] +        uses: JamesIves/github-pages-deploy-action@v4          with:            branch: docs            folder: docs/build diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index b8ca6cdc..0182d268 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -13,10 +13,8 @@ jobs:      runs-on: ubuntu-latest      steps:        - name: Install Python Dependencies -        uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.2 +        uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.0          with: -          # Set dev=true to run pre-commit which is a dev dependency -          dev: true            python_version: ${{ matrix.python_version }}            install_args: "--extras async-rediscache --only main --only lint --only test" @@ -50,7 +48,7 @@ jobs:        - name: Upload a Build Artifact          if: always() && steps.prepare-artifact.outcome == 'success'          continue-on-error: true -        uses: actions/upload-artifact@v2 +        uses: actions/upload-artifact@v3          with:            name: pull-request-payload            path: pull_request_payload.json | 
