Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Bump actions/checkout from 3 to 4 #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go_cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go_fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4


- name: Set up Go
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading