diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index ca74bc5..cb80550 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code from GitHub - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 - name: Perform CodeQL Analysis diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index 092407f..f0db6f1 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -64,7 +64,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python 3.13 id: python @@ -78,7 +78,7 @@ jobs: echo "::set-output name=dir::$(pip cache dir)" - name: Restore cached Python PIP packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v1-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -93,7 +93,7 @@ jobs: - name: Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .venv key: >- diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 51b66ff..d7eff91 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code from GitHub - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python 3.13 id: python @@ -27,7 +27,7 @@ jobs: echo "::set-output name=dir::$(pip cache dir)" - name: Restore cached Python PIP packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip-${{ runner.os }}-v1-${{ steps.python.outputs.python-version }}-${{ hashFiles('.github/workflows/requirements.txt') }} @@ -42,7 +42,7 @@ jobs: - name: Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .venv key: >- diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index ba561ed..9816e55 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -21,7 +21,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 🏗 Set up Poetry run: pipx install poetry @@ -56,7 +56,7 @@ jobs: needs: pytest steps: - name: Check out code from GitHub - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -81,7 +81,7 @@ jobs: - name: Restore cached Python virtual environment id: cached-poetry-dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .venv key: >- @@ -97,7 +97,7 @@ jobs: poetry run coverage xml -i - name: Upload coverage report - uses: codecov/codecov-action@v6.0.1 + uses: codecov/codecov-action@v7.0.0 with: fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }}