From ec66d8216651ff9ae60f5560ec2b11c249632add Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 09:57:25 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#102) --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47d53eb..6dd1cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: go-version: '^1.19.5' - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Lint Go Code with golangci-lint uses: golangci/golangci-lint-action@v3 @@ -39,7 +39,7 @@ jobs: go-version: '^1.19.5' - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run Unit tests. run: | @@ -57,7 +57,7 @@ jobs: name: Build and Integration tests needs: [lint, test] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: '^1.19.5' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c3dad6..9c28799 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest name: goreleaser steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Login to DockerHub Registry run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin - name: Unshallow Fetch