From c8d4399ad60e2e312dcf7cf9df2b2afba00d3414 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 22:42:21 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/pypi.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90d11aa..94447aa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest name: Validate that all files have copyright and license info steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install dev dependencies run: | ./CI/install-uv.sh @@ -37,7 +37,7 @@ jobs: name: Python code verification (src) runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install dependencies run: | ./CI/install-uv.sh @@ -60,7 +60,7 @@ jobs: name: run ptf unit tests runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Dependencies run: | diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 1c3e019..2585a2a 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -15,7 +15,7 @@ jobs: if: ${{ github.repository == 'p4lang/ptf' }} runs-on: [ubuntu-22.04] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install uv run: ./CI/install-uv.sh - name: Build a binary wheel and a source tarball