Skip to content

Commit 4a60283

Browse files
authored
Merge branch 'main' into find-trace-ids-1
Signed-off-by: Mahad Zaryab <[email protected]>
2 parents 07fe36a + 5171afb commit 4a60283

File tree

355 files changed

+3512
-24834
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

355 files changed

+3512
-24834
lines changed

.github/actions/block-pr-from-main-branch/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ runs:
1212
echo "Branch: ${{ github.event.pull_request.head.ref }}"
1313
1414
if [ "${{ github.event.pull_request.head.repo.fork }}" == "true" ] && [ "${{ github.event.pull_request.head.ref }}" == 'main' ]; then
15-
echo "PRs from the main branch of forked repositories are not allowed."
15+
echo "Error 🛑: PRs from the main branch of forked repositories are not allowed."
16+
echo " Please create a named branch and resubmit the PR."
17+
echo " See https://github.com/jaegertracing/jaeger/blob/main/CONTRIBUTING_GUIDELINES.md#branches"
1618
exit 1
1719
fi

.github/actions/verify-metrics-snapshot/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
using: 'composite'
1515
steps:
1616
- name: Upload current metrics snapshot
17-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
17+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
1818
with:
1919
name: ${{ inputs.artifact_key }}
2020
path: ./.metrics/${{ inputs.snapshot }}.txt
@@ -63,7 +63,7 @@ runs:
6363
6464
- name: Upload the diff artifact
6565
if: ${{ (github.ref_name != 'main') && (steps.compare-snapshots.outputs.has_diff == 'true') }}
66-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
66+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6767
with:
6868
name: diff_${{ inputs.artifact_key }}
6969
path: ./.metrics/diff_${{ inputs.snapshot }}.txt

.github/workflows/ci-build-binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
outputs:
2323
matrix: ${{ steps.set-matrix.outputs.matrix }}
2424
steps:
25-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
25+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2626
- name: define matrix
2727
id: set-matrix
2828
run: |
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4242

43-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
43+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4444
with:
4545
submodules: true
4646

.github/workflows/ci-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
16+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
1717
with:
1818
ref: ${{ github.event.repository.default_branch }}
1919

.github/workflows/ci-crossdock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2727

28-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2929
with:
3030
submodules: true
3131

.github/workflows/ci-deploy-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
3030

3131
- name: Checkout jaeger repository
32-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
32+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
3333

3434
- name: Deploy using appropriate script
3535
run: |

.github/workflows/ci-docker-all-in-one.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,20 @@ concurrency:
1212
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
1313
cancel-in-progress: true
1414

15-
# See https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
1615
permissions:
1716
contents: read
1817

1918
jobs:
2019
all-in-one:
2120
runs-on: ubuntu-latest
2221
timeout-minutes: 30 # max + 3*std over the last 2600 runs
23-
strategy:
24-
fail-fast: false
25-
matrix:
26-
jaeger_version: [v1, v2]
2722

2823
steps:
2924
- uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
3025
with:
3126
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3227

33-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3429
with:
3530
submodules: true
3631

@@ -62,9 +57,7 @@ jobs:
6257
6358
- name: Build, test, and publish all-in-one image
6459
run: |
65-
bash scripts/build/build-all-in-one-image.sh \
66-
${{ env.BUILD_FLAGS }} \
67-
"${{ matrix.jaeger_version }}"
60+
bash scripts/build/build-all-in-one-image.sh ${{ env.BUILD_FLAGS }} v2
6861
env:
6962
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
7063
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}

.github/workflows/ci-docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2727

28-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2929
with:
3030
submodules: true
3131

.github/workflows/ci-docker-hotrod.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,14 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
runtime: [docker, k8s]
26-
jaeger-version: [v1, v2]
27-
exclude:
28-
- runtime: k8s
29-
jaeger-version: v1
26+
jaeger-version: [v2]
3027

3128
steps:
3229
- uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
3330
with:
3431
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3532

36-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
33+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3734
with:
3835
submodules: true
3936

.github/workflows/ci-e2e-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: echo "${{ github.event.number }}" > pr_number.txt
5353
- name: Upload PR number artifact
5454
if: github.event_name == 'pull_request'
55-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
55+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
5656
with:
5757
name: pr_number
5858
path: pr_number.txt

0 commit comments

Comments
 (0)