Skip to content

Commit 3005498

Browse files
committed
bump versions
1 parent f428cd7 commit 3005498

10 files changed

+10
-10
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install python
3535
uses: actions/setup-python@v4
3636
with:
37-
python-version: '3.10'
37+
python-version: '3.11'
3838

3939
- name: Install dependencies
4040
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install python
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: '3.10'
28+
python-version: '3.11'
2929

3030
- name: Install dependencies
3131
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install python
3434
uses: actions/setup-python@v4
3535
with:
36-
python-version: '3.10'
36+
python-version: '3.11'
3737

3838
- name: Install dependencies
3939
run: |

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ persistent=yes
9292

9393
# Minimum Python version to use for version dependent checks. Will default to
9494
# the version used to run pylint.
95-
py-version=3.10
95+
py-version=3.11
9696

9797
# Discover python modules and packages in the file system subtree.
9898
recursive=no

docker/Dockerfile_dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-alpine
1+
FROM python:3.11-alpine
22

33
# BUILD: docker build -f Dockerfile_dev -t ansible0guy/webui:dev --no-cache .
44
# RUN: docker run -it --name ansible-webui-dev --publish 127.0.0.1:8000:8000 --volume /tmp/awtest:/data --volume $(pwd):/aw ansible-webui:dev

docker/Dockerfile_production

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-alpine
1+
FROM python:3.11-alpine
22

33
ARG AW_VERSION
44

docker/Dockerfile_production_aws

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ARG AW_VERSION
1111
FROM public.ecr.aws/docker/library/golang:1.17-alpine as ssm-builder
1212
# https://hub.docker.com/_/golang/tags?page=1&name=1.15
1313

14-
ARG SSM_VERSION=1.2.553.0
14+
ARG SSM_VERSION=1.2.694.0
1515
# ssm version: https://github.com/aws/session-manager-plugin/releases
1616

1717
RUN apk add --no-cache make git gcc libc-dev curl bash zip && \

docker/Dockerfile_production_unprivileged

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-alpine
1+
FROM python:3.11-alpine
22

33
# BUILD CMD: docker build -f Dockerfile_production -t ansible-webui:<VERSION> --build-arg "AW_VERSION=<VERSION>" --no-cache .
44
# RUN:

docker/Dockerfile_unstable

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-alpine
1+
FROM python:3.11-alpine
22

33
# BUILD: docker build -f Dockerfile_unstable -t ansible0guy/webui:unstable --no-cache .
44
# RUN: docker run -it --name ansible-webui-dev --publish 127.0.0.1:8000:8000 --volume /tmp/awtest:/data ansible0guy/webui:unstable

docker/Dockerfile_unstable_unprivileged

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-alpine
1+
FROM python:3.11-alpine
22

33
# BUILD: docker build -f Dockerfile_unstable_unprivileged -t ansible0guy/webui-unprivileged:unstable --no-cache .
44
# RUN: docker run -it --name ansible-webui-unstable --publish 127.0.0.1:8000:8000 ansible0guy/webui-unprivileged:unstable

0 commit comments

Comments
 (0)