Skip to content

Commit

Permalink
- dependency updates
Browse files Browse the repository at this point in the history
- trying to fix helm chart
  • Loading branch information
DaemonDude23 committed Sep 24, 2023
1 parent 0b52a6d commit ce8d7a7
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
type=semver,pattern=v{{major}}.{{minor}}.{{patch}}
type=semver,pattern=v{{version}}
- name: Docker - Build and Push - Alpine
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.alpine.outputs.tags }}
Expand All @@ -70,7 +70,7 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Docker - Build and Push - Debian
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.debian.outputs.tags }}
Expand Down
3 changes: 3 additions & 0 deletions deploy/helm/charts/abider/index.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
apiVersion: v1
entries: {}
generated: "2023-09-23T17:00:02.415152211-07:00"
2 changes: 1 addition & 1 deletion src/Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.11.4-alpine
FROM docker.io/python:3.11.5-alpine
ARG ABIDER_WORK_DIR='/usr/src/app/'
WORKDIR ${ABIDER_WORK_DIR}
# install useful commands
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile-alpine-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.11.4-alpine
FROM docker.io/python:3.11.5-alpine
ARG ABIDER_WORK_DIR='/usr/src/app/'
WORKDIR ${ABIDER_WORK_DIR}
# install useful commands
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile-debian
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.11.4-bookworm
FROM docker.io/python:3.11.5-bookworm
ARG ABIDER_WORK_DIR='/usr/src/app/'
USER root
RUN groupadd -r abider -g 405 && useradd -u 405 --no-log-init -r -g abider abider
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile-debian-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/python:3.11.4-bookworm
FROM docker.io/python:3.11.5-bookworm
ARG ABIDER_WORK_DIR='/usr/src/app/'
USER root
RUN groupadd -r abider -g 405 && useradd -u 405 --no-log-init -r -g abider abider
Expand Down
14 changes: 7 additions & 7 deletions src/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
aiohttp==3.8.4
aiohttp==3.8.5
aiosignal==1.3.1
async-timeout==4.0.2
async-timeout==4.0.3
attrs==23.1.0
charset-normalizer==3.1.0
charset-normalizer==3.2.0
coloredlogs==15.0.1
debugpy==1.6.7
discord.py==2.3.1
debugpy==1.8.0
discord.py==2.3.2
discordhealthcheck==0.1.1
frozenlist==1.3.3
frozenlist==1.4.0
humanfriendly==10.0
idna==3.4
logging_json==0.4.0
multidict==6.0.4
PyYaml==6.0
PyYaml==6.0.1
yarl==1.9.2
12 changes: 6 additions & 6 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
aiohttp==3.8.4
aiohttp==3.8.5
aiosignal==1.3.1
async-timeout==4.0.2
async-timeout==4.0.3
attrs==23.1.0
charset-normalizer==3.1.0
charset-normalizer==3.2.0
coloredlogs==15.0.1
discord.py==2.3.1
discord.py==2.3.2
discordhealthcheck==0.1.1
frozenlist==1.3.3
frozenlist==1.4.0
humanfriendly==10.0
idna==3.4
logging_json==0.4.0
multidict==6.0.4
PyYaml==6.0
PyYaml==6.0.1
yarl==1.9.2

0 comments on commit ce8d7a7

Please sign in to comment.