diff --git a/.github/workflows/bump-minor.yml b/.github/workflows/bump-minor.yml index 85e0e02..a254688 100644 --- a/.github/workflows/bump-minor.yml +++ b/.github/workflows/bump-minor.yml @@ -6,7 +6,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ssh-key: "${{ secrets.PUSH_TAG_PRIVATE_KEY }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf02d36..f6072bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: if: github.repository == 'go-rel/postgres' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Go diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 79c5a6b..485ddd0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: postgresql user: rel postgresql password: rel - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Test env: POSTGRESQL_DATABASE: postgres://rel:rel@localhost/rel_test @@ -54,7 +54,7 @@ jobs: with: go-version: 1.21 - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Start posgresql containers run: docker-compose -f "docker-compose.yml" up -d --build - name: Test