Skip to content

Commit

Permalink
Build updates, dependabot + GH Actions (#103)
Browse files Browse the repository at this point in the history
* Ignore major,minor versions of k8s.io libs

* Use base version (v3) for actions/checkout

---------

Signed-off-by: kevdowney <[email protected]>
  • Loading branch information
kevdowney authored May 3, 2023
1 parent 4d43f34 commit 0e80cd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ updates:
allow:
- dependency-type: "direct"
ignore:
- dependency-name: "k8s.io*"
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
- dependency-name: "*"
update-types: ["version-update:semver-major"]
- package-ecosystem: "docker"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:

- name: Check out code into the Go module directory
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3

- name: Set up Docker Buildx
id: buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cache: true

- name: Check out code into the Go module directory
uses: actions/checkout@v3.3.0
uses: actions/checkout@v3

- name: Test
run: |
Expand Down

0 comments on commit 0e80cd5

Please sign in to comment.