diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94f3d43fd..448adb105 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: Test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - name: test & coverage report creation # Some tests, notably TestRandomOperations, are extremely slow in CI # with the race detector enabled, so we use -short when -race is diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 500e7e737..9ae88a65f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-go@v2 with: go-version: "^1.15.4" - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - name: Prepare id: prep run: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 63bf57ddb..7ebd7c138 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ jobs: golangci-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: golangci/golangci-lint-action@v3.1.0 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. diff --git a/.github/workflows/proto.yml b/.github/workflows/proto.yml index 4e74f8bb8..1d932c5cf 100644 --- a/.github/workflows/proto.yml +++ b/.github/workflows/proto.yml @@ -10,13 +10,13 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 4 steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - name: lint run: make proto-lint proto-breakage: runs-on: ubuntu-latest timeout-minutes: 4 steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - name: check-breakage run: make proto-check-breaking