diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 2a3fe838..6b7e319a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 26c9ef75..26492c59 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Golint uses: reviewdog/action-golangci-lint@v2 with: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 15667cbe..bcf54196 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Go uses: actions/setup-go@v3 with: diff --git a/.github/workflows/test-arangodb.yml b/.github/workflows/test-arangodb.yml index 36c8ac65..95a0cb40 100644 --- a/.github/workflows/test-arangodb.yml +++ b/.github/workflows/test-arangodb.yml @@ -46,6 +46,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./arangodb && go test ./... -v -race diff --git a/.github/workflows/test-bbolt.yml b/.github/workflows/test-bbolt.yml index 6a137b67..ea213fee 100644 --- a/.github/workflows/test-bbolt.yml +++ b/.github/workflows/test-bbolt.yml @@ -39,6 +39,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./bbolt && go mod tidy && go test ./... -v -race diff --git a/.github/workflows/test-dynamodb.yml b/.github/workflows/test-dynamodb.yml index b3567271..43b3be79 100644 --- a/.github/workflows/test-dynamodb.yml +++ b/.github/workflows/test-dynamodb.yml @@ -44,6 +44,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./dynamodb && go test ./... -v -race diff --git a/.github/workflows/test-memcache.yml b/.github/workflows/test-memcache.yml index f2f16baf..e3b1087d 100644 --- a/.github/workflows/test-memcache.yml +++ b/.github/workflows/test-memcache.yml @@ -44,6 +44,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./memcache && go test ./... -v -race diff --git a/.github/workflows/test-mongodb.yml b/.github/workflows/test-mongodb.yml index 957a6cf2..351fba27 100644 --- a/.github/workflows/test-mongodb.yml +++ b/.github/workflows/test-mongodb.yml @@ -44,6 +44,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./mongodb && go test ./... -v -race diff --git a/.github/workflows/test-mysql.yml b/.github/workflows/test-mysql.yml index 8764849f..364b1c2c 100644 --- a/.github/workflows/test-mysql.yml +++ b/.github/workflows/test-mysql.yml @@ -52,7 +52,7 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./mysql && go test ./... -v -race env: diff --git a/.github/workflows/test-postgres.yml b/.github/workflows/test-postgres.yml index d900856b..5e27be47 100644 --- a/.github/workflows/test-postgres.yml +++ b/.github/workflows/test-postgres.yml @@ -51,7 +51,7 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./postgres && go test ./... -v -race env: diff --git a/.github/workflows/test-redis.yml b/.github/workflows/test-redis.yml index 5f5679f5..0920e430 100644 --- a/.github/workflows/test-redis.yml +++ b/.github/workflows/test-redis.yml @@ -19,7 +19,7 @@ jobs: - windows-latest steps: - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Redis uses: shogo82148/actions-setup-redis@v1 diff --git a/.github/workflows/test-ristretto.yml b/.github/workflows/test-ristretto.yml index 8141bcf0..3ae01dd1 100644 --- a/.github/workflows/test-ristretto.yml +++ b/.github/workflows/test-ristretto.yml @@ -39,6 +39,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./ristretto && go mod tidy && go test ./... -v -race diff --git a/.github/workflows/test-s3.yml b/.github/workflows/test-s3.yml index d5dfad28..6b7de1f2 100644 --- a/.github/workflows/test-s3.yml +++ b/.github/workflows/test-s3.yml @@ -48,6 +48,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run Test run: cd ./s3 && go test ./... -v -race diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0785686f..49e343c8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test Badger run: cd ./badger && go test ./... -v -race - name: Test Memory