From 25acd31b6ff0f3380b8f67a6c29024d128dd4518 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 23:18:47 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c9d4f62..5ec3821 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,7 +25,7 @@ jobs: - python-version: '2.7' container-image: python:2.7 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # fetch all history for setuptools_scm to be able to read tags From f0df4e9d30afa8cab0b5f39efd484085a790a806 Mon Sep 17 00:00:00 2001 From: Natty Linden Date: Wed, 5 Feb 2025 01:42:54 +0000 Subject: [PATCH 2/2] Reformat the actions/checkout comment about fetch-depth [dependabot skip] --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5ec3821..6c2c877 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: CI on: pull_request: push: - branches: [main, signal/gh] + branches: [main] tags: [v*.*.*] jobs: @@ -27,7 +27,9 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 # fetch all history for setuptools_scm to be able to read tags + # Fetch all the history so setuptools_scm can version relative to the + # most recent version tag. + fetch-depth: 0 - uses: actions/setup-python@v4 # Only set up Python if we're running directly on an agent. If we're in