From 3ef567a39efa40623ec187c548d96bc0165b401f Mon Sep 17 00:00:00 2001 From: Sebastian Seedorf Date: Tue, 19 May 2026 18:42:10 +0200 Subject: [PATCH] Pin actions to @v1 tag --- .gitea/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 61b9f8c..a49fa04 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - name: Bump version id: version - uses: https://git.sebse.de/sebse/actions/version-bump@main + uses: https://git.sebse.de/sebse/actions/version-bump@v1 with: token: ${{ github.token }} @@ -28,26 +28,26 @@ jobs: echo "IMAGE_MIGRATE=git.sebse.de/${{ github.repository }}-migrate" >> $GITHUB_ENV - name: Docker login - uses: https://git.sebse.de/sebse/actions/docker-login@main + uses: https://git.sebse.de/sebse/actions/docker-login@v1 with: username: ${{ secrets.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and push app - uses: https://git.sebse.de/sebse/actions/docker-build-push@main + uses: https://git.sebse.de/sebse/actions/docker-build-push@v1 with: image: ${{ env.IMAGE }} build-context: ./web - name: Build and push migrate - uses: https://git.sebse.de/sebse/actions/docker-build-push@main + uses: https://git.sebse.de/sebse/actions/docker-build-push@v1 with: image: ${{ env.IMAGE_MIGRATE }} build-context: ./web dockerfile: ./web/Dockerfile.migrate - name: Package and push helm chart - uses: https://git.sebse.de/sebse/actions/helm-package-push@main + uses: https://git.sebse.de/sebse/actions/helm-package-push@v1 with: chart-path: ${{ env.CHART_PATH }} version: ${{ steps.version.outputs.version }} @@ -56,14 +56,14 @@ jobs: password: ${{ secrets.REGISTRY_TOKEN }} - name: Package and push Factorio mod - uses: https://git.sebse.de/sebse/actions/factorio-mod-push@main + uses: https://git.sebse.de/sebse/actions/factorio-mod-push@v1 with: mod-folder: ./plugin version: ${{ steps.version.outputs.version }} factorio-token: ${{ secrets.FACTORIO_TOKEN }} - name: Deploy to prod - uses: https://git.sebse.de/sebse/actions/helm-deploy@main + uses: https://git.sebse.de/sebse/actions/helm-deploy@v1 with: app: factorio-signal-exporter profile: prod