3 Commits

Author SHA1 Message Date
Matthias Hinrichs 5bbd5745a8 fix: aktualisiere das Basis-Image auf mirror.gcr.io/alpine:latest
Build And Test / build (push) Successful in 58s
Build And Test / Build and Publish Docker Image (push) Successful in 1m3s
2025-11-22 03:08:47 +01:00
Matthias Hinrichs 0e4f439ba3 fix: aktualisiere das Schema und füge Paketregeln in renovate.json hinzu
Build And Test / build (push) Successful in 51s
Build And Test / Build and Publish Docker Image (push) Failing after 31s
2025-11-22 02:32:29 +01:00
Matthias Hinrichs ed25e4a200 chore(deps): downgrade actions/upload-artifact and actions/download-artifact to v3
Build And Test / build (push) Successful in 51s
Build And Test / Build and Publish Docker Image (push) Failing after 45s
2025-11-22 02:30:13 +01:00
3 changed files with 14 additions and 4 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ jobs:
- run: go mod download
- run: CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o manage-servers .
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v3
with:
name: manage-servers-binary
path: manage-servers
@@ -45,7 +45,7 @@ jobs:
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login git.hnrx.net \
--username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v3
with:
name: manage-servers-binary
path: .
+1 -1
View File
@@ -1,4 +1,4 @@
FROM alpine:latest
FROM mirror.gcr.io/alpine:latest
RUN mkdir /config
+11 -1
View File
@@ -1,3 +1,13 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"packageNames": [
"@actions/artifact",
"upload-artifact",
"download-artifact"
],
"enabled": false
}
]
}