Skip to content

Commit 0143675

Browse files
Bump actions/checkout from 2 to 4 (#69)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 96c0996 commit 0143675

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/bump-minor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
release:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
with:
1111
ssh-key: "${{ secrets.PUSH_TAG_PRIVATE_KEY }}"
1212

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: github.repository == 'go-rel/postgres'
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Go

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
postgresql user: rel
2727
postgresql password: rel
2828
- name: Check out code into the Go module directory
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v4
3030
- name: Test
3131
env:
3232
POSTGRESQL_DATABASE: postgres://rel:rel@localhost/rel_test
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
go-version: 1.21
5656
- name: Check out code into the Go module directory
57-
uses: actions/checkout@v2
57+
uses: actions/checkout@v4
5858
- name: Start posgresql containers
5959
run: docker-compose -f "docker-compose.yml" up -d --build
6060
- name: Test

0 commit comments

Comments
 (0)