From 75f4e9b59533ccbc7d5d0ae6256f8de652b55a5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 14 Mar 2026 01:14:06 +0000 Subject: [PATCH] ci(dependabot): bump the actions group with 4 updates Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 6 - [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/v4...v6) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `aws-actions/configure-aws-credentials` from 5 to 6 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v5...v6) Updates `actions/download-artifact` from 6 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/analyze.yml | 12 ++++++------ .github/workflows/build-docs.yml | 2 +- .github/workflows/cache-dependencies.yml | 2 +- .github/workflows/ci.yml | 6 +++--- .github/workflows/cleanup-aws.yml | 4 ++-- .github/workflows/cleanup-firebase.yml | 2 +- .github/workflows/make-requirements.yml | 12 ++++++------ 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index 48d1a21e9..eed5b041e 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -15,7 +15,7 @@ jobs: python-version: [3.11] os: [ubuntu-latest] steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - uses: ./.github/actions/dependencies - name: Pack test recipe run: | @@ -27,7 +27,7 @@ jobs: - name: Run analysis code run: uv run analyze -r cellpack/tests/recipes/v2/test_spheres.json -a cellpack/tests/analysis-configs/PR_analysis_config.json -p cellpack/tests/outputs/test_spheres/spheresSST - name: Upload results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: results path: cellpack/tests/outputs/test_spheres/ @@ -35,22 +35,22 @@ jobs: runs-on: ubuntu-latest needs: [Analyze] steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - name: Configure AWS credentials for dependabot if: ${{ github.actor == 'dependabot[bot]' }} - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-access-key-id: ${{ secrets.DEPENDABOT_AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.DEPENDABOT_AWS_SECRET_ACCESS_KEY }} aws-region: us-west-2 - name: Configure AWS credentials if: ${{ github.actor != 'dependabot[bot]' }} - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: us-west-2 - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v8 with: name: results path: ./results diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index d32349135..f7b4e9518 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -17,7 +17,7 @@ jobs: if: ${{ !contains(github.event.head_commit.message, 'Bump version') }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/cache-dependencies.yml b/.github/workflows/cache-dependencies.yml index 548d29557..b95c9b410 100644 --- a/.github/workflows/cache-dependencies.yml +++ b/.github/workflows/cache-dependencies.yml @@ -14,5 +14,5 @@ jobs: dependencies: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: ./.github/actions/dependencies \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afa36e380..ebfbd8aae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - uses: ./.github/actions/dependencies - name: Test with pytest run: | @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest if: ${{ !contains(github.event.head_commit.message, 'Bump version') }} steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - uses: ./.github/actions/dependencies - name: Lint with flake8 run: | @@ -62,7 +62,7 @@ jobs: id-token: write steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - uses: ./.github/actions/dependencies - name: Publish to PyPI run: uv publish diff --git a/.github/workflows/cleanup-aws.yml b/.github/workflows/cleanup-aws.yml index a20be8b6c..e2f402baf 100644 --- a/.github/workflows/cleanup-aws.yml +++ b/.github/workflows/cleanup-aws.yml @@ -9,9 +9,9 @@ jobs: cleanup: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/cleanup-firebase.yml b/.github/workflows/cleanup-firebase.yml index ec939d5b7..89ccd1792 100644 --- a/.github/workflows/cleanup-firebase.yml +++ b/.github/workflows/cleanup-firebase.yml @@ -12,7 +12,7 @@ jobs: python-version: [3.11] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v6 - uses: ./.github/actions/dependencies - name: Cleanup Firebase Metadata env: diff --git a/.github/workflows/make-requirements.yml b/.github/workflows/make-requirements.yml index 86b7816e6..ecf79adfb 100644 --- a/.github/workflows/make-requirements.yml +++ b/.github/workflows/make-requirements.yml @@ -16,7 +16,7 @@ jobs: os: [ubuntu-latest, macOS-latest, windows-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install uv uses: astral-sh/setup-uv@v7 @@ -56,7 +56,7 @@ jobs: esac - name: Upload requirements files - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ steps.platform.outputs.platform }}-requirements path: requirements/${{ steps.platform.outputs.platform }} @@ -65,21 +65,21 @@ jobs: needs: [make-requirements] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Download linux requirements files - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: linux-requirements path: requirements/linux - name: Download windows requirements files - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: windows-requirements path: requirements/windows - name: Download macOS requirements files - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v8 with: name: macos-requirements path: requirements/macos