Skip to content

Commit de3e197

Browse files
committed
Update CI workflows to include actions/checkout@v4 in both ci.yml and release.yml; remove redundant checkout step from ci-checks action.yml for improved efficiency.
1 parent c5acd9d commit de3e197

3 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/actions/ci-checks/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: go test, vet, regenerate gen/, and verify gen/ matches commit
44
runs:
55
using: composite
66
steps:
7-
- uses: actions/checkout@v4
87
- uses: actions/setup-go@v5
98
with:
109
go-version-file: go.mod

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ jobs:
1818
checks:
1919
runs-on: ubuntu-latest
2020
steps:
21+
- uses: actions/checkout@v4
2122
- uses: ./.github/actions/ci-checks

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
ci:
1313
runs-on: ubuntu-latest
1414
steps:
15+
- uses: actions/checkout@v4
1516
- uses: ./.github/actions/ci-checks
1617

1718
publish:

0 commit comments

Comments
 (0)