diff --git a/.github/workflows/gotidy.yml b/.github/workflows/gotidy.yml index d3b27a3..e5e7ae5 100644 --- a/.github/workflows/gotidy.yml +++ b/.github/workflows/gotidy.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Set up Go uses: actions/setup-go@v4 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 2a80320..d170d08 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Repository - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Run Golint uses: reviewdog/action-golangci-lint@v2 with: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index e9fa1c1..d68b876 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Repository - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Run Gosec uses: securego/gosec@master with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6478999..ca10d5b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Run Test run: go test ./... -v -race