From d189215ec39820914ae035e1961d1c988db32248 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 9 Jul 2026 20:48:06 +0200 Subject: [PATCH] ci: update actions/checkout to v7 and actions/setup-python to v6 --- .github/workflows/black.yaml | 2 +- .github/workflows/ci.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/black.yaml b/.github/workflows/black.yaml index 0ac4870..39e9340 100644 --- a/.github/workflows/black.yaml +++ b/.github/workflows/black.yaml @@ -12,7 +12,7 @@ jobs: lint: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: psf/black@stable with: version: "~= 26.0" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 173ea5b..aecdcb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: continue-on-error: ${{ matrix.allow-failure || false }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # just fetching 1 commit is not enough for setuptools-scm, so we fetch all fetch-depth: 0 @@ -193,7 +193,7 @@ jobs: echo "BORGSTORE_TEST_REST1_URL=http://testuser:testpass@localhost/repos/repo1/" >> $GITHUB_ENV echo "BORGSTORE_TEST_REST2_URL=http://testuser:testpass@localhost/repos/repo2/" >> $GITHUB_ENV - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install Python requirements