From 4661555aa624044f13a455ba1498be7be2880c86 Mon Sep 17 00:00:00 2001 From: cswimr Date: Wed, 19 Mar 2025 13:57:15 -0400 Subject: [PATCH] fix(actions): use full urls for actions --- .forgejo/workflows/workflow.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/workflow.yaml b/.forgejo/workflows/workflow.yaml index 923e75e..1998bf9 100644 --- a/.forgejo/workflows/workflow.yaml +++ b/.forgejo/workflows/workflow.yaml @@ -12,10 +12,10 @@ jobs: container: catthehacker/ubuntu:act-latest steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + uses: https://code.forgejo.org/actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: "Setup uv" - uses: astral-sh/setup-uv@v5 + uses: https://github.com/astral-sh/setup-uv@v5 with: version: "latest" enable-cache: true @@ -38,12 +38,12 @@ jobs: container: catthehacker/ubuntu:act-latest steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + uses: https://code.forgejo.org/actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - name: "Setup uv" - uses: astral-sh/setup-uv@v5 + uses: https://github.com/astral-sh/setup-uv@v5 with: version: "latest" enable-cache: true @@ -54,7 +54,7 @@ jobs: run: uv sync --no-dev --group=documentation - name: Set environment variables - uses: FranzDiebold/github-env-vars-action@v2 + uses: https://github.com/FranzDiebold/github-env-vars-action@v2 - name: Build documentation run: |