File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 25
25
IMAGE : jbi
26
26
steps :
27
27
- name : Check out the repo
28
- uses : actions/checkout@v4
28
+ uses : actions/checkout@v5
29
29
with :
30
30
fetch-depth : 0 # Fetch everything (tags)
31
31
fetch-tags : true
Original file line number Diff line number Diff line change 6
6
run_lint :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v4
9
+ - uses : actions/checkout@v5
10
10
- uses : actions/setup-python@v5
11
11
id : setup-python
12
12
with :
23
23
run_test :
24
24
runs-on : ubuntu-latest
25
25
steps :
26
- - uses : actions/checkout@v4
26
+ - uses : actions/checkout@v5
27
27
- uses : actions/setup-python@v5
28
28
id : setup-python
29
29
with :
Original file line number Diff line number Diff line change 1
1
# Creating a python base with shared environment variables
2
- FROM python:3.13.6 AS base
2
+ FROM python:3.13.7 AS base
3
3
ENV PIP_NO_CACHE_DIR=off \
4
4
PIP_DEFAULT_TIMEOUT=100 \
5
5
PIP_DISABLE_PIP_VERSION_CHECK=on \
@@ -22,7 +22,7 @@ COPY ./poetry.lock ./pyproject.toml ./
22
22
RUN $POETRY_HOME/bin/poetry install --without dev --no-root
23
23
24
24
# `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
26
26
27
27
# Install pandoc for markdown to Jira conversions.
28
28
RUN apt-get -y update && \
You can’t perform that action at this time.
0 commit comments