Skip to content

Commit ff634d9

Browse files
build(deps): bump actions/checkout from 3 to 4
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] <support@github.com>
1 parent f4c7545 commit ff634d9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docker-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
image: cfssl/cfssl
2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 0
3434

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- run: psql -c 'create database certdb_development;' -U postgres;
5151
- run: mysql -e 'create database certdb_development;' -u root;
5252
- run: mysql -e 'SET global sql_mode = 0;' -u root;
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454

5555
- name: Set up Go
5656
uses: actions/setup-go@v4
@@ -73,6 +73,6 @@ jobs:
7373
- uses: actions/setup-go@v4
7474
with:
7575
go-version: 1.18
76-
- uses: actions/checkout@v3
76+
- uses: actions/checkout@v4
7777
- name: golangci-lint
7878
uses: golangci/golangci-lint-action@v3

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- run: make snapshot
1414
- name: Archive snapshot artifacts
1515
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)