Skip to content

Commit 18174e3

Browse files
chore(deps): update all dependencies
1 parent 02fb5a5 commit 18174e3

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

.github/workflows/build-test-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v4
23-
- uses: apache/skywalking-eyes@v0.6.0
23+
- uses: apache/skywalking-eyes@v0.7.0
2424
env:
2525
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2626

2727
pre-commit:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
steps:
3030
- uses: actions/checkout@v4
3131
- uses: actions/setup-python@v5
3232
with:
33-
python-version: "3.7"
33+
python-version: "3.13"
3434
- run: |
3535
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/v1.6.26/scripts/download-actionlint.bash)
3636
- uses: pre-commit/[email protected]

.github/workflows/reusable-build-test-release.yml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ jobs:
375375
uses: fsfe/[email protected]
376376

377377
lint:
378-
runs-on: ubuntu-22.04
378+
runs-on: ubuntu-24.04
379379
steps:
380380
- uses: actions/checkout@v4
381381
- uses: actions/setup-python@v5
@@ -401,7 +401,7 @@ jobs:
401401
fetch-depth: "0"
402402
ref: ${{ github.head_ref }}
403403
- name: Secret Scanning Trufflehog
404-
uses: trufflesecurity/trufflehog@v3.88.5
404+
uses: trufflesecurity/trufflehog@v3.90.3
405405
with:
406406
extra_args: -x .github/workflows/exclude-patterns.txt --json --only-verified
407407
version: 3.77.0
@@ -438,7 +438,7 @@ jobs:
438438
run-unit-tests:
439439
name: run-unit-tests
440440
if: ${{ needs.test-inventory.outputs.unit == 'true' }}
441-
runs-on: ubuntu-22.04
441+
runs-on: ubuntu-24.04
442442
needs:
443443
- test-inventory
444444
permissions:
@@ -500,7 +500,7 @@ jobs:
500500
path: test-results/*
501501

502502
build:
503-
runs-on: ubuntu-22.04
503+
runs-on: ubuntu-24.04
504504
needs:
505505
- check-docs-changes
506506
- validate-custom-version
@@ -612,13 +612,13 @@ jobs:
612612
echo "VERSION=${FINALVERSION}" >> "$GITHUB_OUTPUT"
613613
- name: Download THIRDPARTY
614614
if: github.event_name != 'pull_request' && github.event_name != 'schedule'
615-
uses: actions/download-artifact@v4
615+
uses: actions/download-artifact@v5
616616
with:
617617
name: THIRDPARTY
618618
- name: Download THIRDPARTY (Optional for PR and schedule)
619619
if: github.event_name == 'pull_request' || github.event_name == 'schedule'
620620
continue-on-error: true
621-
uses: actions/download-artifact@v4
621+
uses: actions/download-artifact@v5
622622
with:
623623
name: THIRDPARTY
624624
- name: Update Notices
@@ -706,7 +706,7 @@ jobs:
706706
- "manual"
707707
steps:
708708
- uses: actions/checkout@v4
709-
- uses: actions/download-artifact@v4
709+
- uses: actions/download-artifact@v5
710710
with:
711711
name: package-splunkbase
712712
path: build/package/
@@ -745,7 +745,7 @@ jobs:
745745
- "cloud"
746746
steps:
747747
- uses: actions/checkout@v4
748-
- uses: actions/download-artifact@v4
748+
- uses: actions/download-artifact@v5
749749
with:
750750
name: package-splunkbase
751751
path: build/package
@@ -768,7 +768,7 @@ jobs:
768768
- build
769769
- test-inventory
770770
if: ${{ !cancelled() && needs.build.result == 'success' }}
771-
runs-on: ubuntu-22.04
771+
runs-on: ubuntu-24.04
772772
outputs:
773773
argo-server: ${{ steps.test-setup.outputs.argo-server }}
774774
argo-http1: ${{ steps.test-setup.outputs.argo-http1 }}
@@ -827,7 +827,7 @@ jobs:
827827
echo "spl-host-suffix=wfe.splgdi.com"
828828
echo "k8s-manifests-branch=${{ inputs.k8s-manifests-branch }}"
829829
} >> "$GITHUB_OUTPUT"
830-
- uses: actions/download-artifact@v4
830+
- uses: actions/download-artifact@v5
831831
if: ${{ needs.test-inventory.outputs.ucc_modinput_functional == 'true' }}
832832
id: download-openapi
833833
with:
@@ -897,7 +897,7 @@ jobs:
897897
splunk: ${{ fromJson(needs.meta.outputs.matrix_Splunk) }}
898898
sc4s: ${{ fromJson(needs.meta.outputs.matrix_supportedSC4S) }}
899899
container:
900-
image: ghcr.io/splunk/workflow-engine-base:4.1.0
900+
image: ghcr.io/splunk/workflow-engine-base:5.0.0
901901
env:
902902
ARGO_SERVER: ${{ needs.setup.outputs.argo-server }}
903903
ARGO_HTTP1: ${{ needs.setup.outputs.argo-http1 }}
@@ -1112,7 +1112,7 @@ jobs:
11121112
spl2_tests_run cli -o log_cli=true --log-cli-level=INFO --verbose --junitxml test-results/report.xml
11131113
- name: Test Report
11141114
id: test_report
1115-
uses: dorny/test-reporter@v1.9.1
1115+
uses: dorny/test-reporter@v2.1.1
11161116
if: ${{ !cancelled() }}
11171117
with:
11181118
name: spl2 test report
@@ -1134,7 +1134,7 @@ jobs:
11341134
splunk: ${{ fromJson(needs.meta.outputs.matrix_Splunk) }}
11351135
sc4s: ${{ fromJson(needs.meta.outputs.matrix_supportedSC4S) }}
11361136
container:
1137-
image: ghcr.io/splunk/workflow-engine-base:4.1.0
1137+
image: ghcr.io/splunk/workflow-engine-base:5.0.0
11381138
env:
11391139
ARGO_SERVER: ${{ needs.setup.outputs.argo-server }}
11401140
ARGO_HTTP1: ${{ needs.setup.outputs.argo-http1 }}
@@ -1326,7 +1326,7 @@ jobs:
13261326
${{ needs.setup.outputs.directory-path }}/test-results/cim-compliance-report.md
13271327
- name: Test Report
13281328
id: test_report
1329-
uses: dorny/test-reporter@v1.9.1
1329+
uses: dorny/test-reporter@v2.1.1
13301330
if: ${{ !cancelled() }}
13311331
with:
13321332
name: splunk ${{ matrix.splunk.version }}${{ secrets.OTHER_TA_REQUIRED_CONFIGS }} ${{ env.TEST_TYPE }} test report
@@ -1374,7 +1374,7 @@ jobs:
13741374
if: ${{ !cancelled() && needs.run-knowledge-tests.result != 'skipped' }}
13751375
steps:
13761376
- name: Download all summaries
1377-
uses: actions/download-artifact@v4
1377+
uses: actions/download-artifact@v5
13781378
with:
13791379
pattern: summary-ko*
13801380
- name: Combine summaries into a table
@@ -1406,7 +1406,7 @@ jobs:
14061406
vendor-version: ${{ fromJson(needs.meta.outputs.matrix_supportedUIVendors) }}
14071407
marker: ${{ fromJson(inputs.ui_marker) }}
14081408
container:
1409-
image: ghcr.io/splunk/workflow-engine-base:4.1.0
1409+
image: ghcr.io/splunk/workflow-engine-base:5.0.0
14101410
env:
14111411
ARGO_SERVER: ${{ needs.setup.outputs.argo-server }}
14121412
ARGO_HTTP1: ${{ needs.setup.outputs.argo-http1 }}
@@ -1605,7 +1605,7 @@ jobs:
16051605
${{ needs.setup.outputs.directory-path }}/argo-logs
16061606
- name: Test Report
16071607
id: test_report
1608-
uses: dorny/test-reporter@v1.9.1
1608+
uses: dorny/test-reporter@v2.1.1
16091609
if: ${{ !cancelled() }}
16101610
with:
16111611
name: splunk ${{ matrix.splunk.version }}${{ secrets.OTHER_TA_REQUIRED_CONFIGS }} ${{ env.TEST_TYPE }} ${{ matrix.browser }} ${{ matrix.vendor-version.image }} test report
@@ -1653,7 +1653,7 @@ jobs:
16531653
if: ${{ !cancelled() && needs.run-ui-tests.result != 'skipped' }}
16541654
steps:
16551655
- name: Download all summaries
1656-
uses: actions/download-artifact@v4
1656+
uses: actions/download-artifact@v5
16571657
with:
16581658
pattern: summary-ui*
16591659
- name: Combine summaries into a table
@@ -1685,7 +1685,7 @@ jobs:
16851685
vendor-version: ${{ fromJson(needs.meta.outputs.matrix_supportedModinputFunctionalVendors) }}
16861686
marker: ${{ fromJson(inputs.marker) }}
16871687
container:
1688-
image: ghcr.io/splunk/workflow-engine-base:4.1.0
1688+
image: ghcr.io/splunk/workflow-engine-base:5.0.0
16891689
env:
16901690
ARGO_SERVER: ${{ needs.setup.outputs.argo-server }}
16911691
ARGO_HTTP1: ${{ needs.setup.outputs.argo-http1 }}
@@ -1882,7 +1882,7 @@ jobs:
18821882
${{ needs.setup.outputs.directory-path }}/argo-logs
18831883
- name: Test Report
18841884
id: test_report
1885-
uses: dorny/test-reporter@v1.9.1
1885+
uses: dorny/test-reporter@v2.1.1
18861886
if: ${{ !cancelled() }}
18871887
with:
18881888
name: splunk ${{ matrix.splunk.version }}${{ secrets.OTHER_TA_REQUIRED_CONFIGS }} ${{ env.TEST_TYPE }} ${{ matrix.vendor-version.image }} ${{ matrix.marker }} test report
@@ -1930,7 +1930,7 @@ jobs:
19301930
if: ${{ !cancelled() && needs.run-modinput-tests.result != 'skipped' }}
19311931
steps:
19321932
- name: Download all summaries
1933-
uses: actions/download-artifact@v4
1933+
uses: actions/download-artifact@v5
19341934
with:
19351935
pattern: summary-modinput*
19361936
- name: Combine summaries into a table
@@ -1961,7 +1961,7 @@ jobs:
19611961
vendor-version: ${{ fromJson(needs.meta.outputs.matrix_supportedModinputFunctionalVendors) }}
19621962
marker: ${{ fromJson(inputs.ucc-modinput-marker) }}
19631963
container:
1964-
image: ghcr.io/splunk/workflow-engine-base:4.1.0
1964+
image: ghcr.io/splunk/workflow-engine-base:5.0.0
19651965
env:
19661966
ARGO_SERVER: ${{ needs.setup.outputs.argo-server }}
19671967
ARGO_HTTP1: ${{ needs.setup.outputs.argo-http1 }}
@@ -2158,7 +2158,7 @@ jobs:
21582158
${{ needs.setup.outputs.directory-path }}/argo-logs
21592159
- name: Test Report
21602160
id: test_report
2161-
uses: dorny/test-reporter@v1.9.1
2161+
uses: dorny/test-reporter@v2.1.1
21622162
if: ${{ !cancelled() }}
21632163
with:
21642164
name: splunk ${{ matrix.splunk.version }}${{ secrets.OTHER_TA_REQUIRED_CONFIGS }} ${{ env.TEST_TYPE }} ${{ matrix.vendor-version.image }} ${{ matrix.marker }} test report
@@ -2206,7 +2206,7 @@ jobs:
22062206
if: ${{ !cancelled() && needs.run-ucc-modinput-tests.result != 'skipped' }}
22072207
steps:
22082208
- name: Download all summaries
2209-
uses: actions/download-artifact@v4
2209+
uses: actions/download-artifact@v5
22102210
with:
22112211
pattern: summary-ucc_modinput*
22122212
- name: Combine summaries into a table
@@ -2237,7 +2237,7 @@ jobs:
22372237
vendor-version: ${{ fromJson(needs.meta.outputs.matrix_supportedModinputFunctionalVendors) }}
22382238
ta-version-from-upgrade: ${{ fromJson(inputs.upgrade-tests-ta-versions) }}
22392239
container:
2240-
image: ghcr.io/splunk/workflow-engine-base:4.1.0
2240+
image: ghcr.io/splunk/workflow-engine-base:5.0.0
22412241
env:
22422242
ARGO_SERVER: ${{ needs.setup.outputs.argo-server }}
22432243
ARGO_HTTP1: ${{ needs.setup.outputs.argo-http1 }}
@@ -2423,7 +2423,7 @@ jobs:
24232423
${{ needs.setup.outputs.directory-path }}/argo-logs
24242424
- name: Test Report
24252425
id: test_report
2426-
uses: dorny/test-reporter@v1.9.1
2426+
uses: dorny/test-reporter@v2.1.1
24272427
if: ${{ !cancelled() }}
24282428
with:
24292429
name: splunk ${{ matrix.splunk.version }}${{ secrets.OTHER_TA_REQUIRED_CONFIGS }} ${{ env.TEST_TYPE }} ${{ matrix.vendor-version.image }} test report
@@ -2471,7 +2471,7 @@ jobs:
24712471
if: ${{ !cancelled() && needs.run-upgrade-tests.result != 'skipped' }}
24722472
steps:
24732473
- name: Download all summaries
2474-
uses: actions/download-artifact@v4
2474+
uses: actions/download-artifact@v5
24752475
with:
24762476
pattern: summary-upgrade*
24772477
- name: Combine summaries into a table
@@ -2501,7 +2501,7 @@ jobs:
25012501
splunk: ${{ fromJson(needs.meta.outputs.matrix_Splunk) }}
25022502
os: ${{ fromJson(inputs.scripted-inputs-os-list) }}
25032503
container:
2504-
image: ghcr.io/splunk/workflow-engine-base:4.1.0
2504+
image: ghcr.io/splunk/workflow-engine-base:5.0.0
25052505
env:
25062506
ARGO_SERVER: ${{ needs.setup.outputs.argo-server }}
25072507
ARGO_HTTP1: ${{ needs.setup.outputs.argo-http1 }}
@@ -2693,7 +2693,7 @@ jobs:
26932693
${{ needs.setup.outputs.directory-path }}/argo-logs
26942694
- name: Test Report
26952695
id: test_report
2696-
uses: dorny/test-reporter@v1.9.1
2696+
uses: dorny/test-reporter@v2.1.1
26972697
if: ${{ !cancelled() }}
26982698
with:
26992699
name: splunk ${{ matrix.splunk.version }}${{ secrets.OTHER_TA_REQUIRED_CONFIGS }} ${{ env.TEST_TYPE }} ${{ steps.os-name-version.outputs.os-name }} ${{ steps.os-name-version.outputs.os-version }} test report
@@ -2741,7 +2741,7 @@ jobs:
27412741
if: ${{ !cancelled() && needs.run-scripted-input-tests-full-matrix.result != 'skipped' }}
27422742
steps:
27432743
- name: Download all summaries
2744-
uses: actions/download-artifact@v4
2744+
uses: actions/download-artifact@v5
27452745
with:
27462746
pattern: summary-scripted*
27472747
- name: Combine summaries into a table
@@ -2840,14 +2840,14 @@ jobs:
28402840
make_latest: false
28412841
- name: Download package-deployment
28422842
if: ${{ steps.semantic.outputs.new_release_published == 'true' || steps.custom.outputs.upload_url != '' }}
2843-
uses: actions/download-artifact@v4
2843+
uses: actions/download-artifact@v5
28442844
id: download-package-deployment
28452845
with:
28462846
name: package-deployment
28472847
path: download/artifacts/
28482848
- name: Download package-splunkbase
28492849
if: ${{ steps.semantic.outputs.new_release_published == 'true' || steps.custom.outputs.upload_url != '' }}
2850-
uses: actions/download-artifact@v4
2850+
uses: actions/download-artifact@v5
28512851
id: download-package-splunkbase
28522852
with:
28532853
name: package-splunkbase
@@ -2856,7 +2856,7 @@ jobs:
28562856
id: download-cim-compliance-report
28572857
if: ${{ steps.semantic.outputs.new_release_published == 'true' || steps.custom.outputs.upload_url != '' }}
28582858
continue-on-error: true
2859-
uses: actions/download-artifact@v4
2859+
uses: actions/download-artifact@v5
28602860
with:
28612861
name: cim-compliance-report
28622862
path: download/artifacts/deployment

0 commit comments

Comments
 (0)