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