Skip to content

Commit 061163b

Browse files
authored
Merge branch 'main' into main
2 parents 1d977ed + beefb46 commit 061163b

7 files changed

Lines changed: 109 additions & 99 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@ updates:
1010
update-types:
1111
- version-update:semver-patch
1212
- version-update:semver-minor
13+
1314
- package-ecosystem: "github-actions"
1415
directory: "/"
1516
schedule:
1617
interval: "daily"
1718
reviewers:
1819
- "python-discord/devops"
20+
groups:
21+
ci-dependencies:
22+
patterns:
23+
- "*"

.github/workflows/build-deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
# The current version (v2) of Docker's build-push action uses
2222
# buildx, which comes with BuildKit features that help us speed
@@ -26,10 +26,10 @@ jobs:
2626
# See https://github.com/docker/build-push-action
2727

2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v3
29+
uses: docker/setup-buildx-action@v4
3030

3131
- name: Login to Github Container Registry
32-
uses: docker/login-action@v3
32+
uses: docker/login-action@v4
3333
with:
3434
registry: ghcr.io
3535
username: ${{ github.repository_owner }}
@@ -40,7 +40,7 @@ jobs:
4040
# and with the short SHA of the commit.
4141

4242
- name: Build and push
43-
uses: docker/build-push-action@v6
43+
uses: docker/build-push-action@v7
4444
with:
4545
context: .
4646
file: ./Dockerfile
@@ -61,12 +61,12 @@ jobs:
6161
environment: production
6262
steps:
6363
- name: Checkout Kubernetes repository
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v6
6565
with:
6666
repository: python-discord/infra
6767
path: infra
6868

69-
- uses: azure/setup-kubectl@v4
69+
- uses: azure/setup-kubectl@v5
7070

7171
- name: Authenticate with Kubernetes
7272
uses: azure/k8s-set-context@v4

.github/workflows/lint-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Install uv
2323
uses: astral-sh/setup-uv@v7
@@ -60,7 +60,7 @@ jobs:
6060
- name: Upload a Build Artifact
6161
if: always() && steps.prepare-artifact.outcome == 'success'
6262
continue-on-error: true
63-
uses: actions/upload-artifact@v5
63+
uses: actions/upload-artifact@v7
6464
with:
6565
name: pull-request-payload
6666
path: pull_request_payload.json

.github/workflows/sentry_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313

1414
- name: Create a Sentry.io release
1515
uses: getsentry/action-release@v3

bot/resources/tags/paste.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
aliases: ["pb"]
23
embed:
34
title: "Pasting large amounts of code"
45
---

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ license = {text = "MIT"}
66
requires-python = "==3.14.*"
77
dependencies = [
88
"pydis-core[all]==11.8.0",
9-
"aiohttp==3.13.2",
9+
"aiohttp==3.13.4",
1010
"arrow==1.4.0",
1111
"beautifulsoup4==4.14.2",
12-
"deepdiff==8.6.1",
12+
"deepdiff==9.0.0",
1313
"emoji==2.15.0",
1414
"feedparser==6.0.12",
1515
"lxml==6.0.2",
@@ -19,7 +19,7 @@ dependencies = [
1919
"python-dateutil==2.9.0.post0",
2020
"python-frontmatter==1.1.0",
2121
"rapidfuzz==3.14.1",
22-
"regex==2025.10.23",
22+
"regex==2026.3.32",
2323
"sentry-sdk==2.43.0",
2424
"tenacity==9.1.2",
2525
"tldextract==5.3.0",

uv.lock

Lines changed: 91 additions & 87 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)