Skip to content

Commit

Permalink
升级actions/checkout@v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ha2556 committed Apr 10, 2024
1 parent 6088b27 commit 27674b7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
check-benchmark-path:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand All @@ -42,7 +42,7 @@ jobs:
outputs:
version: ${{ steps.dubbo-version.outputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: dubbo
- name: "Dubbo cache"
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
job_id: [ 1 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/benchmark-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
check-benchmark-path:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand All @@ -43,7 +43,7 @@ jobs:
outputs:
version: ${{ steps.dubbo-version.outputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: dubbo
- name: "Dubbo cache"
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
job_id: [ 1 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
job_id: [ 1 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand Down Expand Up @@ -392,7 +392,7 @@ jobs:
job_id: [ 1 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/trigger-sample-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
check-benchmark-path:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand All @@ -42,7 +42,7 @@ jobs:
outputs:
version: ${{ steps.dubbo-version.outputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: dubbo
- name: "Dubbo cache"
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
job_id: [ 1 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'wxbty/dubbo-samples'
ref: bh-test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ public static Object invoke(Invoker<?> invoker, RpcInvocation rpcInvocation) thr
bizProfiler = Profiler.start("Receive request. Client invoke begin. ServiceKey: " + serviceKey + " "
+ "MethodName:" + rpcInvocation.getMethodName());
}

rpcInvocation.put(Profiler.PROFILER_KEY, bizProfiler);
try {
return invoker.invoke(rpcInvocation).recreate();
Expand Down

0 comments on commit 27674b7

Please sign in to comment.