From 9fc0562ace798fbafde5f1d79c37f50c094903f4 Mon Sep 17 00:00:00 2001 From: Victor Vargas Date: Tue, 4 Aug 2026 02:03:20 -0700 Subject: [PATCH] ci: fix Forgejo action URLs with explicit github.com prefix --- .forgejo/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 43b685b..b1f91e4 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -37,12 +37,12 @@ jobs: ext: '.exe' steps: - name: Checkout - uses: actions/checkout@v4 + uses: https://github.com/actions/checkout@v4 with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@v5 + uses: https://github.com/actions/setup-go@v5 with: go-version: '1.26' cache: false @@ -63,7 +63,7 @@ jobs: ls -lh "$OUT" - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: https://github.com/actions/upload-artifact@v3 with: name: rony-llm-agent-${{ matrix.os }}-${{ matrix.arch }} path: dist/rony-llm-agent-* @@ -77,7 +77,7 @@ jobs: contents: write steps: - name: Download all artifacts - uses: actions/download-artifact@v3 + uses: https://github.com/actions/download-artifact@v3 with: path: dist @@ -94,7 +94,7 @@ jobs: ls -lh - name: Create Forgejo release - uses: softprops/action-gh-release@v2 + uses: https://github.com/softprops/action-gh-release@v2 with: name: ${{ github.ref_name }} prerelease: ${{ contains(github.ref_name, '-') }}