diff options
author | Valery Piashchynski <[email protected]> | 2022-03-09 12:41:35 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-09 12:41:35 +0100 |
commit | 27e8b912bd9dce6b85058a7babe8931dde323df5 (patch) | |
tree | 1aa9da9c5c221e378d59791122a0151671a473cc | |
parent | 73865cfc77e587741073a36cf4431b3d2b2dd3fb (diff) | |
parent | e81ef7cc0e34ce7398cc277322623e9003943b85 (diff) |
Merge branch 'master' into feat/better-internal-rpc
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release_grpc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 10 |
4 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6c2f3ebf..967a2250 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,7 @@ jobs: language: [ 'go' ] # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] 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 fetch-depth: 2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8657e2b..1484aa5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: go-version: 1.17.7 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install musl if: matrix.compiler == 'musl-gcc' @@ -124,7 +124,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up QEMU uses: docker/setup-qemu-action@v1 # Action page: <https://github.com/docker/setup-qemu-action> diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml index f57e6f7e..03d12ad2 100644 --- a/.github/workflows/release_grpc.yml +++ b/.github/workflows/release_grpc.yml @@ -39,7 +39,7 @@ jobs: go-version: 1.17.7 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: 'roadrunner-server/grpc' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 54a74e3c..115c1c47 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup nodejs uses: actions/setup-node@v3 @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Go 1.17 uses: actions/setup-go@v2 # action page: <https://github.com/actions/setup-go> @@ -62,7 +62,7 @@ jobs: go-version: 1.17.7 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 2 # Fixes codecov error 'Issue detecting commit SHA' @@ -100,7 +100,7 @@ jobs: go-version: 1.17.7 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules> uses: actions/cache@v2 @@ -146,7 +146,7 @@ jobs: needs: [ golangci-lint, go-test ] steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build image run: docker build -t rr:local -f ./Dockerfile . |