Skip to content

Commit

Permalink
update to Python 3.12.6 for Docker image and testing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
erikspears committed Oct 17, 2024
1 parent c8c0365 commit ead5e24
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/qa-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.5'
python-version: '3.12.6'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.5'
python-version: '3.12.6'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.5'
python-version: '3.12.6'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing-wip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.5'
python-version: '3.12.6'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.5'
python-version: '3.12.6'
cache: 'pip'
- name: Install Swirl
run: ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.5-slim-bookworm
FROM python:3.12.6-slim-bookworm

# Update, upgrade and install packages in a single RUN to reduce layers
RUN apt-get update && apt-get install -y \
Expand Down

0 comments on commit ead5e24

Please sign in to comment.