diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index be5db32..2dfaaae 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,7 +11,7 @@ jobs: go-version: '1.15' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -25,7 +25,7 @@ jobs: go-version: '1.16' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -39,7 +39,7 @@ jobs: go-version: '1.17' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -53,7 +53,7 @@ jobs: go-version: '1.18' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -67,7 +67,7 @@ jobs: go-version: '1.19' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... @@ -81,7 +81,7 @@ jobs: go-version: '1.20' id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: go test -race -v ./... -coverprofile=coverage.out -covermode=atomic diff --git a/.github/workflows/golangci-lint-latest.yml b/.github/workflows/golangci-lint-latest.yml index 6e0bb81..2966ade 100644 --- a/.github/workflows/golangci-lint-latest.yml +++ b/.github/workflows/golangci-lint-latest.yml @@ -15,7 +15,7 @@ jobs: check-latest: true id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index aca203d..f15536a 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -12,7 +12,7 @@ jobs: check-latest: true id: go - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 1812300..d162ebc 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set env RELEASE_VERSION run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF} | cut -d'/' -f3)" >> $GITHUB_ENV - name: Create Release