Skip to content

chore(deps): update actions/cache digest to 0057852 #1550

chore(deps): update actions/cache digest to 0057852

chore(deps): update actions/cache digest to 0057852 #1550

Workflow file for this run

name: 'ci'
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: docs
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19' ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 1
- name: Restore Cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
id: cache
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: go.mod
- run: mkdir -p ~/.config/equinix
- run: touch ~/.config/equinix/metal.yaml
- name: Build docs
run: make generate-docs
env:
METAL_AUTH_TOKEN: bogus
- name: Detect Uncommitted Docs
run: git diff --exit-code docs