From f3ef3971f1bb1406483575c8c63a7c18215405c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 06:37:17 +0000 Subject: [PATCH] :arrow_up: Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codecov.yml | 2 +- .github/workflows/go.yml | 12 ++++++------ .github/workflows/go_cross.yml | 2 +- .github/workflows/go_fuzz.yml | 8 ++++---- .github/workflows/go_test.yml | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 646e510..7c6da96 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0fcf00b..7f9453b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,7 +28,7 @@ jobs: GOCACHE: /tmp/go/gocache steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 @@ -66,7 +66,7 @@ jobs: needs: [build] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Test Short run: go test -v -run="^Test" -short ./... -timeout 20m @@ -76,7 +76,7 @@ jobs: # needs: [ build ] # # steps: -# - uses: actions/checkout@v3 +# - uses: actions/checkout@v4 # # - name: Test # run: go test -v -run="^Test" ./... -timeout 6h @@ -86,7 +86,7 @@ jobs: needs: [ build ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Race Short run: go test ./... -v -race -run "^Test" -short -timeout 20m @@ -96,7 +96,7 @@ jobs: # needs: [ test ] # # steps: -# - uses: actions/checkout@v3 +# - uses: actions/checkout@v4 # # - name: Race # run: go test -v -race -run="^Test" ./... -timeout 15m @@ -107,7 +107,7 @@ jobs: needs: [ build ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Benchmark run: go test -v -benchmem -bench=. -run="^#" -benchtime=100x -race -count 1000 -timeout 15m diff --git a/.github/workflows/go_cross.yml b/.github/workflows/go_cross.yml index 6fd9898..bfdb3ee 100644 --- a/.github/workflows/go_cross.yml +++ b/.github/workflows/go_cross.yml @@ -43,7 +43,7 @@ jobs: # GOCACHE: $HOME/gocache # $pwd/go/gocache # Has to be absolute path steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go ${{ matrix.go-version }} ${{runner.os}} uses: actions/setup-go@v3 diff --git a/.github/workflows/go_fuzz.yml b/.github/workflows/go_fuzz.yml index 401be2c..9b2ccf4 100644 --- a/.github/workflows/go_fuzz.yml +++ b/.github/workflows/go_fuzz.yml @@ -28,7 +28,7 @@ jobs: GOCACHE: /tmp/go/gocache steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fuzz Short run: go test -short -fuzz -v -fuzztime=10s -timeout=15m @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest needs: [ fuzz ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # - name: Race Fuzz # run: go test ./... -fuzz -race -v -fuzztime=1m -timeout=15m @@ -71,7 +71,7 @@ jobs: needs: [ fuzz ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fuzz run: go test ./... -fuzz -v -fuzztime=10m -timeout=15m diff --git a/.github/workflows/go_test.yml b/.github/workflows/go_test.yml index 41ea70b..3a017a0 100644 --- a/.github/workflows/go_test.yml +++ b/.github/workflows/go_test.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go @@ -49,7 +49,7 @@ jobs: needs: [build] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Test Short run: go test -v -run="^Test" -short ./... -timeout 20m @@ -59,7 +59,7 @@ jobs: needs: [ test ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Test run: go test -v -run="^Test" ./... -timeout 6h