Skip to content

Commit 3e11998

Browse files
authored
Merge branch 'main' into dependabot/pip/minor-patch-97142c1021
2 parents 1aff6c4 + e98a617 commit 3e11998

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
IMAGE: jbi
2626
steps:
2727
- name: Check out the repo
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0 # Fetch everything (tags)
3131
fetch-tags: true

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
run_lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- uses: actions/setup-python@v5
1111
id: setup-python
1212
with:
@@ -23,7 +23,7 @@ jobs:
2323
run_test:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- uses: actions/setup-python@v5
2828
id: setup-python
2929
with:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Creating a python base with shared environment variables
2-
FROM python:3.13.6 AS base
2+
FROM python:3.13.7 AS base
33
ENV PIP_NO_CACHE_DIR=off \
44
PIP_DEFAULT_TIMEOUT=100 \
55
PIP_DISABLE_PIP_VERSION_CHECK=on \
@@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./
2222
RUN $POETRY_HOME/bin/poetry install --without dev --no-root
2323

2424
# `production` stage uses the dependencies downloaded in the `base` stage
25-
FROM python:3.13.6-slim AS production
25+
FROM python:3.13.7-slim AS production
2626

2727
# Install pandoc for markdown to Jira conversions.
2828
RUN apt-get -y update && \

0 commit comments

Comments
 (0)