From fff6b7d155b7d8a534299031485080d878931b72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Nov 2025 21:53:30 +0000 Subject: [PATCH] Bump the ci-dependencies group across 1 directory with 4 updates Bumps the ci-dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [coverallsapp/github-action](https://github.com/coverallsapp/github-action). Updates `actions/checkout` from 5 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/v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) Updates `coverallsapp/github-action` from 2.3.6 to 2.3.7 - [Release notes](https://github.com/coverallsapp/github-action/releases) - [Commits](https://github.com/coverallsapp/github-action/compare/v2.3.6...v2.3.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: coverallsapp/github-action dependency-version: 2.3.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 4 ++-- .github/workflows/deploy.yaml | 4 ++-- .github/workflows/lint.yaml | 2 +- .github/workflows/sentry_release.yaml | 2 +- .github/workflows/test.yaml | 16 ++++++++-------- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 72d28c4f..18fb8200 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: # The version script relies on history. Fetch 100 commits to be safe. fetch-depth: 100 @@ -113,7 +113,7 @@ jobs: # Make the image available as an artifact so other jobs will be able to # download it. - name: Upload image archive as an artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ env.artifact }} path: ${{ env.artifact }}.tar diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index c9dc54cb..bcb2ac40 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -23,7 +23,7 @@ jobs: steps: - name: Download image artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: ${{ inputs.artifact }} @@ -44,7 +44,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: # The version script relies on history. Fetch 100 commits to be safe. fetch-depth: 100 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 141eba21..af5d02eb 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python id: python diff --git a/.github/workflows/sentry_release.yaml b/.github/workflows/sentry_release.yaml index 56749d55..d99348d4 100644 --- a/.github/workflows/sentry_release.yaml +++ b/.github/workflows/sentry_release.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: # The version script relies on history. Fetch 100 commits to be safe. fetch-depth: 100 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 74fffc07..8ee4c90b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download image artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: ${{ inputs.artifact }} @@ -23,7 +23,7 @@ jobs: # Needed for the Docker Compose file. - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Memory limit tests would fail if this isn't disabled. - name: Disable swap memory @@ -43,7 +43,7 @@ jobs: # Upload it so the coverage from all matrix jobs can be combined later. - name: Upload coverage data - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage path: .coverage @@ -57,7 +57,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 @@ -70,7 +70,7 @@ jobs: run: pip install -U -r requirements/coverage.pip - name: Download coverage data - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: pattern: coverage merge-multiple: true @@ -84,7 +84,7 @@ jobs: # Comment on the PR with the coverage results and register a GitHub check # which links to the coveralls.io job. - name: Publish coverage report to coveralls.io - uses: coverallsapp/github-action@v2.3.6 + uses: coverallsapp/github-action@v2.3.7 with: github-token: ${{ secrets.GITHUB_TOKEN }} format: lcov @@ -95,7 +95,7 @@ jobs: needs: test steps: - name: Download image artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: ${{ inputs.artifact }} @@ -104,7 +104,7 @@ jobs: # Needed for the Docker Compose file. - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Install eval deps the same way as init container from deployment.yaml # This is to ensure that deployment won't fail at that step