diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index b85f2b2..adbedde 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -21,7 +21,7 @@ jobs: runs-on: ${{ matrix.runner }} steps: - name: Repository [Clone] - uses: https://github.com/actions/checkout@v6 + uses: actions/checkout@v6 - name: Environment id: environment run: | @@ -29,7 +29,7 @@ jobs: /usr/bin/echo "UNITS=${UNITS}" >> "${GITHUB_OUTPUT}" /usr/bin/echo "Set Variable 'UNITS' to '${UNITS}'" - name: Linux Sources [Artifact Download] - uses: https://gitea.com/actions/download-artifact@v3-node20 + uses: actions/download-artifact@v3-node20 with: name: linux-sources-${{ inputs.version }}.tar.gz - name: Linux Sources [Extract] diff --git a/.gitea/workflows/sources.yml b/.gitea/workflows/sources.yml index c8f2e92..460ccfe 100644 --- a/.gitea/workflows/sources.yml +++ b/.gitea/workflows/sources.yml @@ -30,7 +30,7 @@ jobs: run: | /usr/bin/tar --create --directory="./linux" --file="./linux-sources-${VERSION}.tar.gz" --gzip '.' --verbose - name: Linux Sources [Artifact Upload] - uses: https://github.com/christopherhx/gitea-upload-artifact@v7 + uses: christopherhx/gitea-upload-artifact@v7 with: name: linux-sources-${{ steps.environment.outputs.version }}.tar.gz path: ./linux-sources-${{ steps.environment.outputs.version }}.tar.gz