Skip to content
Merged

Dev #455

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create_release_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4
uses: docker/setup-buildx-action@37fe631027851001ddb9b187196cc803df7f5f0e # v4
- name: Login to de.NBI OCI
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4
uses: docker/setup-buildx-action@37fe631027851001ddb9b187196cc803df7f5f0e # v4
- name: Login to de.NBI OCI
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4
with:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# --- Build Stage for Webhook ---
# Use Alpine for the builder to maintain consistency
FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder

# Install git to fetch dependencies
RUN apk add --no-cache git
Expand All @@ -12,7 +12,7 @@ RUN git clone https://github.com/adnanh/webhook.git /build \
&& CGO_ENABLED=0 go build -o webhook .

# --- Final Stage ---
FROM python:3.13-alpine
FROM python:3.14-alpine

# Set environment variables
ENV WEBHOOK_URL_PREFIX="wiki/hooks"
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ mkdocs-material==9.7.7
mkdocs-glightbox==0.5.2
mkdocs==1.6.1
mkdocs-htmlproofer-plugin==1.5.0
pygments==2.20.0
pymdown-extensions==11.0.1
mkdocs-git-revision-date-localized-plugin==1.5.3
pygments==2.21.0
pymdown-extensions==11.0.2
mkdocs-git-revision-date-localized-plugin==1.5.4
mkdocs-macros-plugin==1.5.0
Loading