diff options
author | 2025-08-24 23:29:16 +0100 | |
---|---|---|
committer | 2025-08-24 23:29:16 +0100 | |
commit | c23e8cd6f7442b4d2efe8f9c3f7b0d66b94a8274 (patch) | |
tree | fcc2e7f10064454f2f39fcfb6898ef5fb94b3244 | |
parent | Merge pull request #238 from python-discord/bump-to-latest (diff) |
Bump the ci-dependencies group across 1 directory with 2 updates (#240)
Bumps the ci-dependencies group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact).
Updates `actions/checkout` from 4 to 5
- [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...v5)
Updates `actions/download-artifact` from 4 to 5
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v4...v5)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: ci-dependencies
- dependency-name: actions/download-artifact
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: ci-dependencies
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r-- | .github/workflows/build.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/deploy.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/lint.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/sentry_release.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yaml | 12 |
5 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0cc2cea..7678669 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # The version script relies on history. Fetch 100 commits to be safe. fetch-depth: 100 diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 2583463..23c76e9 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: Download image artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ${{ inputs.artifact }} @@ -37,7 +37,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 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 e2a3173..aa8f36d 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python id: python diff --git a/.github/workflows/sentry_release.yaml b/.github/workflows/sentry_release.yaml index 5a96317..56749d5 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@v4 + uses: actions/checkout@v5 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 8c852bf..68e3858 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@v4 + uses: actions/download-artifact@v5 with: name: ${{ inputs.artifact }} @@ -23,7 +23,7 @@ jobs: # Needed for the Docker Compose file. - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Memory limit tests would fail if this isn't disabled. - name: Disable swap memory @@ -57,7 +57,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 @@ -70,7 +70,7 @@ jobs: run: pip install -U -r requirements/coverage.pip - name: Download coverage data - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: pattern: coverage merge-multiple: true @@ -95,7 +95,7 @@ jobs: needs: test steps: - name: Download image artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: ${{ inputs.artifact }} @@ -104,7 +104,7 @@ jobs: # Needed for the Docker Compose file. - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Install eval deps the same way as init container from deployment.yaml # This is to ensure that deployment won't fail at that step |