ci: fix ref to local workflows
CI / install-dependencies (pull_request) Successful in 21s
CI / image check (pull_request) Failing after 5s
CI / check format (pull_request) Successful in 23s
CI / check lint (pull_request) Successful in 32s
CI / test (pull_request) Successful in 22s
CI / build check (pull_request) Successful in 17m4s

This commit is contained in:
2026-05-16 20:15:46 +02:00
parent 6a9cefbaf3
commit 20f81f90eb
4 changed files with 33 additions and 58 deletions
+10 -5
View File
@@ -5,17 +5,20 @@ on:
jobs:
install-dependencies:
runs-on: ubuntu-latest
runs-on:
- ubuntu-latest
- linux_amd64
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0.4.0
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
check-latest: true
- name: Create cache key
uses: .gitea/actions/go-cache-key@main
id: go-cache-key
uses: ./.gitea/actions/go-cache-key
- name: cache go
id: cache-go
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
@@ -23,6 +26,8 @@ jobs:
path: |
/go_path
/go_cache
key: go_path-${{ steps.hash-go.outputs.hash }}
key: go_path-${{ steps.go-cache-key.outputs.hash }}
restore-keys: |-
go_cache-${{ steps.hash-go.outputs.hash }}
go_cache-${{ steps.go-cache-key.outputs.hash }}
- name: Download dependencies
run: go mod download