Compare commits

...

7 Commits

Author SHA1 Message Date
SecretMineDE 0c79ccf1fc Merge pull request 'Update actions/checkout action to v7' (#10) from renovate/actions-checkout-7.x into main
Build image / build-image (push) Successful in 38s
Reviewed-on: #10
2026-06-19 07:15:39 +02:00
Renovate e0064c4d1e Update actions/checkout action to v7 2026-06-19 00:01:09 +00:00
SecretMineDE edc651ee88 pin dependencies
Build image / build-image (push) Successful in 25s
2026-04-05 10:30:15 +02:00
SecretMineDE aa4b99848a Merge pull request 'Update docker/login-action action to v4' (#8) from renovate/docker-login-action-4.x into main
Build image / build-image (push) Successful in 2m8s
Reviewed-on: #8
2026-04-04 22:17:06 +02:00
SecretMineDE 25c8b2d317 Merge pull request 'Update docker/build-push-action action to v7' (#7) from renovate/docker-build-push-action-7.x into main
Build image / build-image (push) Has been cancelled
Reviewed-on: #7
2026-04-04 22:17:03 +02:00
Renovate 09f509263d Update docker/login-action action to v4 2026-04-04 15:16:56 +00:00
Renovate 397dfcb85c Update docker/build-push-action action to v7 2026-04-04 15:16:53 +00:00
4 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -9,17 +9,17 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v6 uses: actions/checkout@v7
with: with:
github-server-url: 'https://git.secretmine.de/' github-server-url: 'https://git.secretmine.de/'
- name: Login to Registry - name: Login to Registry
uses: docker/login-action@v3 uses: docker/login-action@v4
with: with:
registry: git.secretmine.de registry: git.secretmine.de
username: ${{ secrets.REGISTRY_USER }} username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }} password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build Image - name: Build Image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v7
with: with:
file: Containerfile file: Containerfile
context: . context: .
+3 -3
View File
@@ -12,15 +12,15 @@ jobs:
contents: read contents: read
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v6 uses: actions/checkout@v7
- name: Login to Registry - name: Login to Registry
uses: docker/login-action@v3 uses: docker/login-action@v4
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Image - name: Build Image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v7
with: with:
file: Containerfile file: Containerfile
context: . context: .
+1 -1
View File
@@ -1,4 +1,4 @@
FROM python:3-slim-trixie FROM python:3.14-slim-trixie
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y \ apt-get install -y \
+3 -3
View File
@@ -1,3 +1,3 @@
flask flask==3.1.3
pyyaml pyyaml==6.0.3
bootstrap-flask bootstrap-flask==2.5.0