Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: redhat-renovate-bot <[email protected]>
  • Loading branch information
redhat-renovate-bot committed Jan 6, 2025
1 parent f3f3059 commit 101beb9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gating.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: "3.13"

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: "3.13"

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Set up Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: "3.13"

Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ repos:

# Auto-update syntax
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
rev: v3.19.1
hooks:
- id: pyupgrade
args:
- --py311-plus

# Linter and formatter
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.1
rev: v0.8.6
hooks:
- id: ruff
args:
Expand All @@ -62,7 +62,7 @@ repos:

# Type linter
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
rev: v1.14.1
hooks:
- id: mypy
args:
Expand All @@ -85,6 +85,6 @@ repos:

# renovate.json validator
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 39.46.1
rev: 39.91.0
hooks:
- id: renovate-config-validator
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/fedora/python-313:20241120@sha256:8c0c6ddd165c6771ed1ce79ae0f02d6f31de16a7e3fcad8f8048c5c2847f68e0 AS builder
FROM quay.io/fedora/python-313:20250101@sha256:208f88c0d45e010bca6f8adab9534c6408a51e16423d89a115c094feb5fd155d AS builder

# builder should use root to install/create all files
USER root
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ services:
- 127.0.0.1:9125:9125 # statsd

resultsdb-db: &resultsdb-db
image: postgres:14.7-alpine@sha256:07985c5c5e01ee550b30c67a2cf806f8b08b32f74e3f24c4cbef31305ef5776d
image: postgres:17.2-alpine@sha256:d37d2c160d34430877c802e5adc22824a2ad453499db9bab1a2ceb2be6c1a46f
restart: always
env_file: ["docker/resultsdb-db.env"]
healthcheck:
<<: *greenwave-healthcheck
test: "pg_isready -U postgres || exit 1"

resultsdb:
image: quay.io/factory2/resultsdb@sha256:627da20292f062c59dcdb8a0efd73900f430facad6d2c71b44bb281a67089a69
image: quay.io/factory2/resultsdb@sha256:88d3132f686d5e9be93a0cf4a155db9259bbb3e5e8d016fba5a06f5bb1f89b35
environment:
- GREENWAVE_LISTENERS=${GREENWAVE_LISTENERS:-1}
command: ["bash", "-c", "/start.sh"]
Expand All @@ -68,7 +68,7 @@ services:
env_file: ["docker/waiverdb-db.env"]

waiverdb:
image: quay.io/factory2/waiverdb@sha256:4e3b8c380bea13ed30f19f0108b6cc64d9264ae7dab45a89d0431cdf0160a0b3
image: quay.io/factory2/waiverdb@sha256:9a026dea43df1fae476e7037ec260808cf247be29f907c7e210214019bec0c8d
env_file: ["docker/waiverdb.env"]
environment:
- GREENWAVE_LISTENERS=${GREENWAVE_LISTENERS:-1}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ fedora-messaging = "^3.4.1"
"stomp.py" = "^8.1.2"

pytest = {version = "^8.3.3", optional = true}
pytest-cov = {version = "^5.0.0", optional = true}
pytest-cov = {version = "^6.0.0", optional = true}
mock = {version = "^5.1.0", optional = true}
requests-mock = {version = "^1.11.0", optional = true}

SQLAlchemy = {version = "^2.0.35", optional = true}
psycopg2-binary = {version = "^2.9.9", optional = true}

sphinx = {version = "^7.1.2", optional = true}
sphinx = {version = "^8.0.0", optional = true}
sphinxcontrib-httpdomain = {version = "^1.8.1", optional = true}

statsd = "^4.0.1"
Expand Down

0 comments on commit 101beb9

Please sign in to comment.