From 3161d332af4543f8538a032a856dc24fc7c31314 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 12 Jul 2023 14:19:26 +0200 Subject: [PATCH] use absolute urls for action calls (#10) #### :book: Summary - try to use absolute urls for internal actions. -> Testing renovate github-action workaround with this #### :bookmark_tabs: Test Plan > :bulb: Select your test plan for the code changes. - [x] CI pipeline tests - [ ] Custom test - [ ] No test plan ##### Details / Justification #### :books: Additional Notes Co-authored-by: OCram85 Reviewed-on: https://gitea.ocram85.com/OCram85/swarmproxy/pulls/10 --- .gitea/workflows/ci.yaml | 8 ++++---- .gitea/workflows/release.yaml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 25e6d04..dc825fa 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: - name: Docker meta id: meta - uses: actions/metadata-action@v4 + uses: https://gitea.ocram85.com/actions/metadata-action@v4 with: images: | gitea.ocram85.com/ocram85/swarmproxy @@ -31,10 +31,10 @@ jobs: type=semver,pattern={{major}}.{{minor}} - name: Set up Docker Buildx - uses: actions/setup-buildx-action@v2 + uses: https://gitea.ocram85.com/actions/setup-buildx-action@v2 - name: Login to Gitea Package Registry - uses: actions/login-action@v2 + uses: https://gitea.ocram85.com/actions/login-action@v2 with: registry: gitea.ocram85.com username: ${{ secrets.USERNAME }} @@ -42,7 +42,7 @@ jobs: password: ${{ secrets.TOKEN }} - name: Build and push - uses: actions/build-push-action@v4 + uses: https://gitea.ocram85.com/actions/build-push-action@v4 with: push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index e138528..3e312b3 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -9,16 +9,16 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: https://gitea.ocram85.com/actions/checkout@v3 with: fetch-depth: 0 - name: setup go - uses: actions/setup-go@v3 + uses: https://gitea.ocram85.com/actions/setup-go@v3 with: go-version: '>=1.20.1' - name: Use Go Action id: use-go-action - uses: actions/release-action@main + uses: https://gitea.ocram85.com/actions/release-action@main with: files: |- CHANGELOG.md