Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent 4708d15 commit dbab44d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cron_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
go-version: 1.20.x

- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: build
run: make build
Expand All @@ -34,7 +34,7 @@ jobs:
- build
steps:
- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: fetch gatekeeper versions
id: fetch-gk-versions
Expand All @@ -54,7 +54,7 @@ jobs:

steps:
- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: download build
uses: actions/download-artifact@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
go-version: 1.20.x

- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: lint go
uses: golangci/golangci-lint-action@v3
Expand All @@ -34,7 +34,7 @@ jobs:
go-version: 1.20.x

- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: build
run: make build
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: docker build
run: make docker-build
Expand All @@ -95,7 +95,7 @@ jobs:
container: openpolicyagent/conftest:latest
steps:
- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: verify policy formatting
run: conftest fmt --check examples
Expand All @@ -112,7 +112,7 @@ jobs:

steps:
- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: fetch gatekeeper versions
id: fetch-gk-versions
Expand All @@ -132,7 +132,7 @@ jobs:

steps:
- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: download build
uses: actions/download-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
go-version: 1.20.x

- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: unit test
run: make test
Expand All @@ -29,7 +29,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: get version tag
run: echo TAG_NAME=$(echo ${GITHUB_REF} | rev | cut -d"/" -f1 | rev) >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_cli_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
go-version: 1.20.x

- name: checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: generate docs
run: go run -mod=mod .github/gendocs/konstraint.go
Expand Down

0 comments on commit dbab44d

Please sign in to comment.