From 0507623e6398694f44b2eb7b09ada079ced3826a Mon Sep 17 00:00:00 2001 From: Peter Date: Sat, 2 Mar 2024 12:20:03 +0100 Subject: [PATCH] chore: updates --- {.gitea => .forgejo}/workflows/act_runtime.yaml | 8 ++++---- {.gitea => .forgejo}/workflows/image_builds.yaml | 6 +++--- {.gitea => .forgejo}/workflows/keydb.yaml | 8 ++++---- renovate/Dockerfile | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) rename {.gitea => .forgejo}/workflows/act_runtime.yaml (93%) rename {.gitea => .forgejo}/workflows/image_builds.yaml (90%) rename {.gitea => .forgejo}/workflows/keydb.yaml (91%) diff --git a/.gitea/workflows/act_runtime.yaml b/.forgejo/workflows/act_runtime.yaml similarity index 93% rename from .gitea/workflows/act_runtime.yaml rename to .forgejo/workflows/act_runtime.yaml index f080e52..7fe6faa 100644 --- a/.gitea/workflows/act_runtime.yaml +++ b/.forgejo/workflows/act_runtime.yaml @@ -2,7 +2,7 @@ name: act_runtime on: schedule: - - cron: '21 2 * * *' + - cron: "21 2 * * *" push: branches: - main @@ -15,7 +15,7 @@ jobs: build_images: strategy: matrix: - os: + os: - ubuntu-latest - ubuntu-latest-amd64 base: @@ -24,7 +24,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -43,4 +43,4 @@ jobs: tags: code.icb4dc0.de/infrastructure/images/act_runtime:${{ fromJSON(env.TAGS)[matrix.os][matrix.base] }} build-args: | BASE_IMAGE=${{ matrix.base }} - LLVM_VERSION=${{ fromJSON(env.VERSIONS)[matrix.base]["llvm"] }} \ No newline at end of file + LLVM_VERSION=${{ fromJSON(env.VERSIONS)[matrix.base]["llvm"] }} diff --git a/.gitea/workflows/image_builds.yaml b/.forgejo/workflows/image_builds.yaml similarity index 90% rename from .gitea/workflows/image_builds.yaml rename to .forgejo/workflows/image_builds.yaml index 32f416b..69a948a 100644 --- a/.gitea/workflows/image_builds.yaml +++ b/.forgejo/workflows/image_builds.yaml @@ -2,7 +2,7 @@ name: Image builds on: schedule: - - cron: '21 2 * * *' + - cron: "21 2 * * *" push: branches: - main @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -32,4 +32,4 @@ jobs: with: context: "./${{ matrix.image }}" push: true - tags: code.icb4dc0.de/infrastructure/images/${{ matrix.image }}:latest \ No newline at end of file + tags: code.icb4dc0.de/infrastructure/images/${{ matrix.image }}:latest diff --git a/.gitea/workflows/keydb.yaml b/.forgejo/workflows/keydb.yaml similarity index 91% rename from .gitea/workflows/keydb.yaml rename to .forgejo/workflows/keydb.yaml index 886daba..68a8b31 100644 --- a/.gitea/workflows/keydb.yaml +++ b/.forgejo/workflows/keydb.yaml @@ -2,7 +2,7 @@ name: KeyDB on: schedule: - - cron: '21 2 * * *' + - cron: "21 2 * * *" push: branches: - main @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Compose manifest - uses: docker://quay.io/containers/buildah:v1.32.2 + uses: docker://quay.io/containers/buildah:v1.34.0 with: entrypoint: /bin/bash args: | @@ -33,4 +33,4 @@ jobs: GITEA_USER: prskr IMAGE_REGISTRY: code.icb4dc0.de IMAGE_REPO: infrastructure/images/keydb - IMAGE_TAG: v6.3.3 \ No newline at end of file + IMAGE_TAG: v6.3.4 diff --git a/renovate/Dockerfile b/renovate/Dockerfile index f80f97b..1816b28 100644 --- a/renovate/Dockerfile +++ b/renovate/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/golang:1.21-alpine AS go-tools-builder +FROM docker.io/golang:1.22-alpine AS go-tools-builder RUN go install github.com/marwan-at-work/mod/cmd/mod@latest @@ -9,4 +9,4 @@ COPY --from=go-tools-builder /go/bin/ /usr/local/bin/ RUN --mount=type=cache,target=/var/cache/node \ echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \ apk add -U --no-cache git go helm && \ - npm install --cache=/var/cache/node -g renovate \ No newline at end of file + npm install --cache=/var/cache/node -g renovate