Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
} >> "$GITHUB_ENV"

- name: Cache Go modules and build cache
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 46 in .github/workflows/pr-main.yaml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
with:
path: |
${{ env.GOMODCACHE }}
Expand Down Expand Up @@ -107,7 +107,7 @@
} >> "$GITHUB_ENV"

- name: Cache Go modules and build cache
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 110 in .github/workflows/pr-main.yaml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
with:
path: |
${{ env.GOMODCACHE }}
Expand Down Expand Up @@ -157,7 +157,7 @@
} >> "$GITHUB_ENV"

- name: Cache Go modules and build cache
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 160 in .github/workflows/pr-main.yaml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
with:
path: |
${{ env.GOMODCACHE }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
} >> "$GITHUB_ENV"

- name: Cache Go modules
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 44 in .github/workflows/pr-pre-commit.yaml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
with:
path: ${{ env.GOMODCACHE }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-mod-

- name: Cache Go build
uses: actions/cache@v4
uses: actions/cache@v5

Check failure on line 52 in .github/workflows/pr-pre-commit.yaml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. This version (v5) of actions/cache is being deprecated. Please update to v4. (actions-cache / error)
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/*.go') }}
Expand Down Expand Up @@ -80,7 +80,7 @@
python-version: '3.x'

- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
Loading