diff --git a/.github/workflows/auto-bump-develop.yml b/.github/workflows/auto-bump-develop.yml index 1e272c7..13a3e71 100644 --- a/.github/workflows/auto-bump-develop.yml +++ b/.github/workflows/auto-bump-develop.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 1edc226..e972cdc 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -50,7 +50,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Log in to Container Registry if: ${{ inputs.push }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 5739861..cdbdd60 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -52,7 +52,7 @@ jobs: uv run pytest --cov=stitchee --cov-report=xml tests/integration - name: Upload coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: true diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 2a38dc2..94574a9 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bee1aac..fe0bde8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,7 +27,7 @@ jobs: venue: ${{ steps.version.outputs.venue }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.release_tag || github.ref }} fetch-depth: 0 # Fetch all history for accurate versioning/changelogs diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index eec9fa1..43f3e30 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -41,7 +41,7 @@ jobs: run: uv run pytest --cov=stitchee --cov-report=xml tests/unit - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: true diff --git a/.github/workflows/version-and-build.yml b/.github/workflows/version-and-build.yml index 51bec55..79f8aaf 100644 --- a/.github/workflows/version-and-build.yml +++ b/.github/workflows/version-and-build.yml @@ -46,7 +46,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Need history for auto-bump script @@ -172,7 +172,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6