Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:

# Linter and formatter
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.14
rev: v0.15.0
hooks:
- id: ruff
args:
Expand All @@ -42,6 +42,6 @@ repos:

# renovate.json validator
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 43.2.1
rev: 43.4.3
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:20260128@sha256:a5b6ed33c1c093094e9cceaed2bf6b4a792734a3d44e1021bece82aae9323018 AS builder
FROM quay.io/fedora/python-313:20260204@sha256:598f8ed357664b1a28977269f9c1d61bc605b6fa4dbc447a4c30c3aab8e032ba AS builder

# builder should use root to install/create all files
USER root
Expand Down
2 changes: 1 addition & 1 deletion product_listings_manager/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def process_gssapi_request(token):
sc = gssapi.SecurityContext(usage="accept")

stage = "step context"
token = sc.step(token if token else None)
token = sc.step(token or None)
token = token if token is not None else b""

# The current architecture cannot support continuation here
Expand Down