From 90ddccb8af5625c942e66664c355397e3e1d434b Mon Sep 17 00:00:00 2001 From: Andrea Fazzi Date: Sun, 10 Nov 2024 15:28:26 +0100 Subject: [PATCH] Pass full action repo URL --- .forgejo/workflows/go_hello.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/go_hello.yaml b/.forgejo/workflows/go_hello.yaml index 431a4b0..08439cf 100644 --- a/.forgejo/workflows/go_hello.yaml +++ b/.forgejo/workflows/go_hello.yaml @@ -3,8 +3,8 @@ jobs: test: runs-on: docker steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: code.forgejo.org/actions/checkout@v4 + - uses: code.forgejo.org/actions/setup-go@v5 with: go-version: '1.16.1' # The Go version to download (if necessary) and use. - run: go run hello.go