From 0e2c85b6246e339285a29999d737505ecdcc02ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=91=D0=B0?= =?UTF-8?q?=D0=B4=D1=8F=D0=B5=D0=B2?= Date: Wed, 14 Jan 2026 21:16:26 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BA=D0=BE=D0=BD=D0=B2=D0=B5=D0=B9=D0=B5=D1=80?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/release.yaml | 44 +++++++++++++++++------------------ dockerfiles/base.dockerfile | 6 ++--- dockerfiles/doc.dockerfile | 6 ++--- dockerfiles/python.dockerfile | 6 ++--- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 2f7c6f2..873c860 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -18,15 +18,15 @@ jobs: lfs: true - name: set-up qemu - uses: https://git.mousesoft.ru/ms/gitea-action-setup-qemu@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-setup-qemu@v3 - name: set-up docker buildx - uses: https://git.mousesoft.ru/ms/gitea-action-docker-setup-buildx@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-setup-buildx@v3 with: buildkitd-flags: --debug - name: login to docker hub - uses: https://git.mousesoft.ru/ms/gitea-action-docker-login@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-login@v3 with: registry: git.mousesoft.ru username: ${{ secrets.API_USER }} @@ -40,7 +40,7 @@ jobs: echo IMAGE_REVISION=$(git rev-parse HEAD) | tee -a $GITHUB_OUTPUT - name: build and push base 24.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/base.dockerfile @@ -56,11 +56,11 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:ubuntu-24.04 - git.mousesoft.ru/ms/gitea-runner-images:ubuntu-latest + git.mousesoft.ru/actions/gitea-runner-images:ubuntu-24.04 + git.mousesoft.ru/actions/gitea-runner-images:ubuntu-latest - name: build and push python 24.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/python.dockerfile @@ -76,11 +76,11 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:python-ubuntu-24.04 - git.mousesoft.ru/ms/gitea-runner-images:python-ubuntu-latest + git.mousesoft.ru/actions/gitea-runner-images:python-ubuntu-24.04 + git.mousesoft.ru/actions/gitea-runner-images:python-ubuntu-latest - name: build and push doc 24.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/doc.dockerfile @@ -96,27 +96,27 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:doc-ubuntu-24.04 - git.mousesoft.ru/ms/gitea-runner-images:doc-ubuntu-latest + git.mousesoft.ru/actions/gitea-runner-images:doc-ubuntu-24.04 + git.mousesoft.ru/actions/gitea-runner-images:doc-ubuntu-latest ubuntu-22_04: runs-on: ubuntu-latest steps: - name: check-out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: lfs: true - name: set-up qemu - uses: https://git.mousesoft.ru/ms/gitea-action-setup-qemu@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-setup-qemu@v3 - name: set-up docker buildx - uses: https://git.mousesoft.ru/ms/gitea-action-docker-setup-buildx@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-setup-buildx@v3 with: buildkitd-flags: --debug - name: login to docker hub - uses: https://git.mousesoft.ru/ms/gitea-action-docker-login@v3 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-login@v3 with: registry: git.mousesoft.ru username: ${{ secrets.API_USER }} @@ -130,7 +130,7 @@ jobs: echo IMAGE_REVISION=$(git rev-parse HEAD) | tee -a $GITHUB_OUTPUT - name: build and push base 22.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/base.dockerfile @@ -146,10 +146,10 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:ubuntu-22.04 + git.mousesoft.ru/actions/gitea-runner-images:ubuntu-22.04 - name: build and push python 22.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/python.dockerfile @@ -165,10 +165,10 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:python-ubuntu-22.04 + git.mousesoft.ru/actions/gitea-runner-images:python-ubuntu-22.04 - name: build and push doc 22.04 - uses: https://git.mousesoft.ru/ms/gitea-action-docker-build-push@v6 + uses: https://git.mousesoft.ru/actions/gitea-action-docker-build-push@v6 with: context: . file: dockerfiles/doc.dockerfile @@ -184,4 +184,4 @@ jobs: IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }} IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }} tags: | - git.mousesoft.ru/ms/gitea-runner-images:doc-ubuntu-22.04 + git.mousesoft.ru/actions/gitea-runner-images:doc-ubuntu-22.04 diff --git a/dockerfiles/base.dockerfile b/dockerfiles/base.dockerfile index f0511b6..4498c41 100644 --- a/dockerfiles/base.dockerfile +++ b/dockerfiles/base.dockerfile @@ -8,9 +8,9 @@ ARG IMAGE_REVISION LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.authors="MouseSoft" \ - org.opencontainers.image.url="https://git.mousesoft.ru/ms/gitea-runner-images" \ - org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/gitea-runner-images/src/branch/main/README.md" \ - org.opencontainers.image.source="https://git.mousesoft.ru/ms/gitea-runner-images" \ + org.opencontainers.image.url="https://git.mousesoft.ru/actions/gitea-runner-images" \ + org.opencontainers.image.documentation="https://git.mousesoft.ru/actions/gitea-runner-images/src/branch/main/README.md" \ + org.opencontainers.image.source="https://git.mousesoft.ru/actions/gitea-runner-images" \ org.opencontainers.image.version="${IMAGE_VERSION}" \ org.opencontainers.image.revision="${IMAGE_REVISION}" \ org.opencontainers.image.vendor="MouseSoft" \ diff --git a/dockerfiles/doc.dockerfile b/dockerfiles/doc.dockerfile index 6cea11f..a20cb30 100644 --- a/dockerfiles/doc.dockerfile +++ b/dockerfiles/doc.dockerfile @@ -9,9 +9,9 @@ ARG IMAGE_REVISION LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.authors="MouseSoft" \ - org.opencontainers.image.url="https://git.mousesoft.ru/ms/gitea-runner-images" \ - org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/gitea-runner-images/src/branch/main/README.md" \ - org.opencontainers.image.source="https://git.mousesoft.ru/ms/gitea-runner-images" \ + org.opencontainers.image.url="https://git.mousesoft.ru/actions/gitea-runner-images" \ + org.opencontainers.image.documentation="https://git.mousesoft.ru/actions/gitea-runner-images/src/branch/main/README.md" \ + org.opencontainers.image.source="https://git.mousesoft.ru/actions/gitea-runner-images" \ org.opencontainers.image.version="${IMAGE_VERSION}" \ org.opencontainers.image.revision="${IMAGE_REVISION}" \ org.opencontainers.image.vendor="MouseSoft" \ diff --git a/dockerfiles/python.dockerfile b/dockerfiles/python.dockerfile index 1bf063b..406836a 100644 --- a/dockerfiles/python.dockerfile +++ b/dockerfiles/python.dockerfile @@ -8,9 +8,9 @@ ARG IMAGE_REVISION LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.authors="MouseSoft" \ - org.opencontainers.image.url="https://git.mousesoft.ru/ms/gitea-runner-images" \ - org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/gitea-runner-images/src/branch/main/README.md" \ - org.opencontainers.image.source="https://git.mousesoft.ru/ms/gitea-runner-images" \ + org.opencontainers.image.url="https://git.mousesoft.ru/actions/gitea-runner-images" \ + org.opencontainers.image.documentation="https://git.mousesoft.ru/actions/gitea-runner-images/src/branch/main/README.md" \ + org.opencontainers.image.source="https://git.mousesoft.ru/actions/gitea-runner-images" \ org.opencontainers.image.version="${IMAGE_VERSION}" \ org.opencontainers.image.revision="${IMAGE_REVISION}" \ org.opencontainers.image.vendor="MouseSoft" \