forked from quic-go/quic-go
ci: update GitHub action workflow versions (#3677)
* Update build-interop-docker.yml * Update go-generate.yml * Update lint.yml * Update unit.yml
This commit is contained in:
4
.github/workflows/build-interop-docker.yml
vendored
4
.github/workflows/build-interop-docker.yml
vendored
@@ -7,8 +7,8 @@ jobs:
|
|||||||
interop:
|
interop:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: docker/build-push-action@v1
|
- uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
always_pull: true
|
always_pull: true
|
||||||
path: interop/
|
path: interop/
|
||||||
|
|||||||
4
.github/workflows/go-generate.yml
vendored
4
.github/workflows/go-generate.yml
vendored
@@ -3,8 +3,8 @@ jobs:
|
|||||||
gogenerate:
|
gogenerate:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
go-version: "1.20.x"
|
go-version: "1.20.x"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|||||||
8
.github/workflows/lint.yml
vendored
8
.github/workflows/lint.yml
vendored
@@ -4,8 +4,8 @@ jobs:
|
|||||||
check:
|
check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
go-version: "1.20.x"
|
go-version: "1.20.x"
|
||||||
- name: Check that no non-test files import Ginkgo or Gomega
|
- name: Check that no non-test files import Ginkgo or Gomega
|
||||||
@@ -24,8 +24,8 @@ jobs:
|
|||||||
golangci-lint:
|
golangci-lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
go-version: "1.19.x"
|
go-version: "1.19.x"
|
||||||
- name: golangci-lint
|
- name: golangci-lint
|
||||||
|
|||||||
2
.github/workflows/unit.yml
vendored
2
.github/workflows/unit.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
TIMESCALE_FACTOR: 20
|
TIMESCALE_FACTOR: 20
|
||||||
run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -race -randomize-all -randomize-suites -trace -skip-package integrationtests
|
run: go run github.com/onsi/ginkgo/v2/ginkgo -r -v -race -randomize-all -randomize-suites -trace -skip-package integrationtests
|
||||||
- name: Upload coverage to Codecov
|
- name: Upload coverage to Codecov
|
||||||
uses: codecov/codecov-action@v1
|
uses: codecov/codecov-action@v3
|
||||||
with:
|
with:
|
||||||
file: coverage.txt
|
file: coverage.txt
|
||||||
env_vars: OS=${{ matrix.os }}, GO=${{ matrix.go }}
|
env_vars: OS=${{ matrix.os }}, GO=${{ matrix.go }}
|
||||||
|
|||||||
Reference in New Issue
Block a user