bc8e7e10e1
Reviewed-on: #1 Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
34 lines
945 B
YAML
34 lines
945 B
YAML
name: Install Go Dependencies
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
install-dependencies:
|
|
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
|
|
with:
|
|
go-version-file: go.mod
|
|
check-latest: true
|
|
- name: Create cache key
|
|
id: go-cache-key
|
|
uses: ./.gitea/actions/go-cache-key
|
|
- name: cache go
|
|
id: cache-go
|
|
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: |
|
|
/go_path
|
|
/go_cache
|
|
key: go_path-${{ steps.go-cache-key.outputs.hash }}
|
|
restore-keys: |-
|
|
go_cache-${{ steps.go-cache-key.outputs.hash }}
|
|
- name: Download dependencies
|
|
run: go mod download
|