Skip to content

Commit 08b1ef5

Browse files
evonzeedependabot[bot]eric vz
authored
Dependency updates 2024-10-24 (#169)
* Bump python from 3.11-bookworm to 3.13-bookworm Bumps python from 3.11-bookworm to 3.13-bookworm. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Bump docker/login-action from 2 to 3 Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump docker/setup-qemu-action from 2 to 3 Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) from 2 to 3. - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v2...v3) --- updated-dependencies: - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump docker/build-push-action from 4 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v4...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump docker/setup-buildx-action from 2 to 3 Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2 to 3. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v2...v3) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * don't try to build and push dependabot commits * update python dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: eric vz <git@base10.org>
1 parent 6600b0a commit 08b1ef5

File tree

3 files changed

+30
-26
lines changed

3 files changed

+30
-26
lines changed

.github/workflows/build-to-dockerhub.yml

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@ on:
77
tags:
88
- "v*.*.*"
99

10+
11+
12+
1013
jobs:
11-
docker:
14+
docker-build-and-push:
1215
runs-on: ubuntu-latest
16+
if: ${{ github.actor != 'dependabot[bot]' }}
1317
steps:
14-
-
15-
name: Checkout
16-
uses: actions/checkout@v3
17-
-
18-
name: Docker meta
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Docker meta
1922
id: meta
2023
uses: docker/metadata-action@v4
2124
with:
@@ -28,22 +31,22 @@ jobs:
2831
type=semver,pattern={{version}}
2932
type=semver,pattern={{major}}.{{minor}}
3033
type=semver,pattern={{major}}
31-
-
32-
name: Set up QEMU
33-
uses: docker/setup-qemu-action@v2
34-
-
35-
name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@v2
37-
-
38-
name: Login to Docker Hub
34+
35+
- name: Set up QEMU
36+
uses: docker/setup-qemu-action@v3
37+
38+
- name: Set up Docker Buildx
39+
uses: docker/setup-buildx-action@v3
40+
41+
- name: Login to Docker Hub
3942
if: github.event_name != 'pull_request'
40-
uses: docker/login-action@v2
43+
uses: docker/login-action@v3
4144
with:
4245
username: ${{ secrets.DOCKERHUB_USERNAME }}
4346
password: ${{ secrets.DOCKERHUB_TOKEN }}
44-
-
45-
name: Build and push
46-
uses: docker/build-push-action@v4
47+
48+
- name: Build and push
49+
uses: docker/build-push-action@v6
4750
with:
4851
context: .
4952
push: ${{ github.event_name != 'pull_request' }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11-bookworm
1+
FROM python:3.13-bookworm
22
WORKDIR /app
33

44
COPY requirements.txt .

requirements.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
aiohappyeyeballs==2.3.7
2-
aiohttp==3.10.4
1+
aiohappyeyeballs==2.4.3
2+
aiohttp==3.10.10
33
aiosignal==1.3.1
44
async-timeout==4.0.3
55
attrs==24.2.0
6-
charset-normalizer==3.3.2
6+
charset-normalizer==3.4.0
77
discord.py==2.4.0
88
docopt==0.6.2
9-
frozenlist==1.4.1
10-
idna==3.7
9+
frozenlist==1.5.0
10+
idna==3.10
1111
irc3==1.1.10
12-
multidict==6.0.5
12+
multidict==6.1.0
13+
propcache==0.2.0
1314
venusian==3.1.0
14-
yarl==1.9.4
15+
yarl==1.16.0
1516
zstandard==0.23.0

0 commit comments

Comments
 (0)