From e3787281fd3b8f4b4abb7ba5c591e6f3157f0158 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Tue, 24 Feb 2026 18:05:38 -0700 Subject: [PATCH] ??? --- {.github => .gitea}/workflows/deploy.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) rename {.github => .gitea}/workflows/deploy.yml (63%) diff --git a/.github/workflows/deploy.yml b/.gitea/workflows/deploy.yml similarity index 63% rename from .github/workflows/deploy.yml rename to .gitea/workflows/deploy.yml index 56a4279..f762a7d 100644 --- a/.github/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -12,20 +12,20 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ secrets.REPO_HOST }} username: ${{ github.repository_owner }} password: ${{ secrets.DEPLOY_TOKEN }} - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . platforms: linux/amd64 @@ -33,5 +33,6 @@ jobs: tags: | ${{ secrets.REPO_HOST }}/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.sha }} ${{ secrets.REPO_HOST }}/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest - cache-from: type=gha - cache-to: type=gha,mode=max + provenance: false + cache-from: type=registry,ref=${{ secrets.REPO_HOST }}/${{ github.repository_owner }}/${{ github.event.repository.name }}:buildcache + cache-to: type=registry,ref=${{ secrets.REPO_HOST }}/${{ github.repository_owner }}/${{ github.event.repository.name }}:buildcache,mode=max