diff --git a/.github/workflows/publish-static-docs.yml b/.github/workflows/publish-static-docs.yml index abb2bf7..908ee7b 100644 --- a/.github/workflows/publish-static-docs.yml +++ b/.github/workflows/publish-static-docs.yml @@ -34,7 +34,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v5 - name: setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.10" - name: Install and configure Poetry @@ -48,7 +48,7 @@ jobs: #---------------------------------------------- - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-publish-static-docs @@ -58,7 +58,7 @@ jobs: - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: | - poetry install --with doc --extras scripts + poetry install --with doc --with scripts - name: Build documentation run: | poetry run mkdocs build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b01cb2..d12236b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: shell: bash # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get Changelog Entry id: changelog_reader @@ -46,7 +46,7 @@ jobs: path: ./CHANGELOG.md # run build using the minimum supported python version - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: "3.9" diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d3e2f61..b69801e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -21,7 +21,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-versions }} @@ -37,7 +37,7 @@ jobs: #---------------------------------------------- - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}-run-tests