Skip to content

Commit c3ffe49

Browse files
Update actions for 1.5 and make names consistent
Signed-off-by: killianmuldoon <[email protected]>
1 parent 1567f68 commit c3ffe49

File tree

12 files changed

+28
-23
lines changed

12 files changed

+28
-23
lines changed
File renamed without changes.

.github/workflows/dependabot.yml renamed to .github/workflows/pr-dependabot.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
name: dependabot
1+
name: PR dependabot code generation and go modules fix
22

3+
# This action runs on other PRs opened by dependabot. It updates modules and generated code on PRs opened by dependabot.
34
on:
45
pull_request:
56
branches:

.github/workflows/golangci-lint.yml renamed to .github/workflows/pr-golangci-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: golangci-lint
1+
name: PR golangci-lint
22

33
on:
44
pull_request:

.github/workflows/lint-docs-pr.yaml renamed to .github/workflows/pr-md-link-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check PR Markdown links
1+
name: PR check Markdown links
22

33
on:
44
pull_request:

.github/workflows/verify.yml renamed to .github/workflows/pr-verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: verify
1+
name: PR verify
22

33
on:
44
pull_request_target:
File renamed without changes.

.github/workflows/scan.yml renamed to .github/workflows/weekly-image-scan.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: scan-images
1+
name: Weekly image scan
22

33
on:
44
schedule:
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
branch: [ main, release-1.4, release-1.3 ]
16+
branch: [ main, release-1.5, release-1.4 ]
1717
name: Trivy
1818
runs-on: ubuntu-latest
1919
steps:

.github/workflows/lint-docs-weekly.yml renamed to .github/workflows/weekly-md-link-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
branch: [ main, release-1.4, release-1.3 ]
17+
branch: [ main, release-1.5, release-1.4 ]
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # tag=v3.5.3

.github/workflows/test-release-weekly.yml renamed to .github/workflows/weekly-test-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: Release test
1+
name: Weekly release test
22

3-
# Note: This workflow does not build for releases. It attempts to build release binaries daily to ensure the repo
4-
# is in a good state.
3+
# Note: This workflow does not build for releases. It attempts to build release binaries periodically to ensure the repo
4+
# release machinery is in a good state.
55

66
on:
77
schedule:
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
branch: [ main, release-1.4, release-1.3 ]
20+
branch: [ main, release-1.5, release-1.4 ]
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # tag=v3.5.3

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ GINKGO := $(abspath $(TOOLS_BIN_DIR)/$(GINKGO_BIN)-$(GINGKO_VER))
160160
GINKGO_PKG := github.com/onsi/ginkgo/v2/ginkgo
161161

162162
GOLANGCI_LINT_BIN := golangci-lint
163-
GOLANGCI_LINT_VER := $(shell cat .github/workflows/golangci-lint.yml | grep [[:space:]]version: | sed 's/.*version: //')
163+
GOLANGCI_LINT_VER := $(shell cat .github/workflows/pr-golangci-lint.yaml | grep [[:space:]]version: | sed 's/.*version: //')
164164
GOLANGCI_LINT := $(abspath $(TOOLS_BIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER))
165165
GOLANGCI_LINT_PKG := github.com/golangci/golangci-lint/cmd/golangci-lint
166166

0 commit comments

Comments
 (0)