Skip to content

Commit 6f04e0a

Browse files
authored
Merge branch 'main' into latest-go-version
2 parents df4a742 + dc21563 commit 6f04e0a

36 files changed

+588
-495
lines changed

.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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
25+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
43+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.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
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1616
with:
1717
ref: ${{ github.event.repository.default_branch }}
1818

.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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
28+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
submodules: true
3131

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,15 @@ jobs:
2929
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
3030

3131
- name: Checkout jaeger repository
32-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
32+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
3333

34-
- name: Deploy using Jaeger's deploy-all.sh
34+
- name: Deploy using appropriate script
3535
run: |
3636
cd ./examples/oci
37-
bash ./deploy-all.sh
37+
if [ "${{ github.event_name }}" = "schedule" ]; then
38+
echo "🕒 Scheduled run - using deploy-all.sh (upgrade mode)"
39+
bash ./deploy-all.sh
40+
else
41+
echo "🔄 Manual run - using deploy-all.sh with clean mode (uninstall/install)"
42+
bash ./deploy-all.sh clean
43+
fi

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3232

33-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
33+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3434
with:
3535
submodules: true
3636

.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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
28+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
submodules: true
3131

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3232

33-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
33+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3434
with:
3535
submodules: true
3636

.github/workflows/ci-e2e-badger.yaml

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

27-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
27+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2929
with:
3030
go-version: 1.24.x

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3939

40-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
40+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4141

4242
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
4343
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
43+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4444
with:
4545
submodules: true
4646

0 commit comments

Comments
 (0)