Skip to content

Commit ec83987

Browse files
chore(deps): update github-actions (major) (#1966)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v6` -> `v7` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v5` -> `v6` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v7`](https://redirect.github.com/actions/download-artifact/compare/v6...v7) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v6...v7) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v6`](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every 2 weeks on Sunday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/splunk/addonfactory-ucc-generator). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6ImRldmVsb3AiLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b59e905 commit ec83987

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fossa report attribution --format text > /tmp/THIRDPARTY
3838
env:
3939
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
40-
- uses: actions/upload-artifact@v5
40+
- uses: actions/upload-artifact@v6
4141
with:
4242
name: THIRDPARTY
4343
path: /tmp/THIRDPARTY
@@ -106,12 +106,12 @@ jobs:
106106
- uses: actions/setup-python@v6
107107
with:
108108
python-version: "3.9"
109-
- uses: actions/download-artifact@v6
109+
- uses: actions/download-artifact@v7
110110
with:
111111
name: UCC-UI-build
112112
path: built-ui/
113113

114-
- uses: actions/download-artifact@v6
114+
- uses: actions/download-artifact@v7
115115
if: "! github.event.pull_request.head.repo.fork "
116116
with:
117117
name: THIRDPARTY
@@ -123,7 +123,7 @@ jobs:
123123
run: |
124124
cp -R built-ui/. splunk_add_on_ucc_framework/package/appserver/static/js/build
125125
poetry build
126-
- uses: actions/upload-artifact@v5
126+
- uses: actions/upload-artifact@v6
127127
with:
128128
name: UCC-build
129129
path: dist/
@@ -176,7 +176,7 @@ jobs:
176176
- "3.14"
177177
steps:
178178
- uses: actions/checkout@v6
179-
- uses: actions/download-artifact@v6
179+
- uses: actions/download-artifact@v7
180180
with:
181181
name: UCC-UI-build
182182
path: built-ui/
@@ -208,7 +208,7 @@ jobs:
208208
- uses: actions/setup-python@v6
209209
with:
210210
python-version: "3.9"
211-
- uses: actions/download-artifact@v6
211+
- uses: actions/download-artifact@v7
212212
with:
213213
name: UCC-UI-build
214214
path: built-ui/
@@ -222,11 +222,11 @@ jobs:
222222
RUM_ACCESS_TOKEN: ${{ secrets.RUM_ACCESS_TOKEN}}
223223
- run: poetry run ucc-gen package --path output/Splunk_TA_UCCExample
224224
- run: poetry run ucc-gen validate --addon-path output/Splunk_TA_UCCExample
225-
- uses: actions/upload-artifact@v5
225+
- uses: actions/upload-artifact@v6
226226
with:
227227
name: Splunk_TA_UCCExample-raw-output
228228
path: output/*
229-
- uses: actions/upload-artifact@v5
229+
- uses: actions/upload-artifact@v6
230230
with:
231231
name: Splunk_TA_UCCExample-packaged
232232
path: Splunk_TA_UCCExample*.tar.gz
@@ -263,7 +263,7 @@ jobs:
263263
- uses: actions/setup-python@v6
264264
with:
265265
python-version: "3.9"
266-
- uses: actions/download-artifact@v6
266+
- uses: actions/download-artifact@v7
267267
with:
268268
name: Splunk_TA_UCCExample-raw-output
269269
path: output/
@@ -281,7 +281,7 @@ jobs:
281281
until curl -k -s -u admin:Chang3d! https://localhost:8089/services/server/info\?output_mode\=json | jq '.entry[0].content.kvStoreStatus' | grep -o "ready" ; do echo -n "Waiting for KVStore to become ready-" && sleep 5 ; done
282282
timeout-minutes: 5
283283
- run: poetry run pytest tests/ui --test-group-count 10 --test-group ${{ matrix.test-group }} --test-group-random-seed 123456 --headless --junitxml=test-results/junit.xml
284-
- uses: actions/upload-artifact@v5
284+
- uses: actions/upload-artifact@v6
285285
if: success() || failure()
286286
with:
287287
name: test-results-ui-${{ matrix.splunk.version }}-${{ matrix.test-group }}
@@ -291,7 +291,7 @@ jobs:
291291
run: |
292292
docker cp splunk:/opt/splunk/var/log/splunk/splunkd.log ./splunkd.log
293293
- name: Upload splunkd.log to GitHub Check
294-
uses: actions/upload-artifact@v5
294+
uses: actions/upload-artifact@v6
295295
if: failure()
296296
with:
297297
name: test-ui-splunkd-splunkd-${{ matrix.splunk.version }}-${{ matrix.test-group }}.log
@@ -349,7 +349,7 @@ jobs:
349349
- "cloud"
350350
steps:
351351
- uses: actions/checkout@v6
352-
- uses: actions/download-artifact@v6
352+
- uses: actions/download-artifact@v7
353353
with:
354354
name: Splunk_TA_UCCExample-packaged
355355
path: build/package
@@ -362,7 +362,7 @@ jobs:
362362
password: ${{secrets.SPL_COM_PASSWORD}}
363363
app_path: build/package
364364
included_tags: ${{ matrix.tags }}
365-
- uses: actions/upload-artifact@v5
365+
- uses: actions/upload-artifact@v6
366366
if: always()
367367
with:
368368
name: appinspect-api-html-report-${{ matrix.tags }}
@@ -385,7 +385,7 @@ jobs:
385385
- uses: actions/setup-python@v6
386386
with:
387387
python-version: "3.11"
388-
- uses: actions/download-artifact@v6
388+
- uses: actions/download-artifact@v7
389389
with:
390390
name: UCC-UI-build
391391
path: built-ui/
@@ -466,11 +466,11 @@ jobs:
466466
- name: install UI deps
467467
uses: ./.github/actions/cached-ui-deps
468468
- run: curl -sSL https://install.python-poetry.org | python3 - --version ${{env.POETRY_VERSION}}
469-
- uses: actions/download-artifact@v6
469+
- uses: actions/download-artifact@v7
470470
with:
471471
name: UCC-UI-build
472472
path: built-ui/
473-
- uses: actions/download-artifact@v6
473+
- uses: actions/download-artifact@v7
474474
with:
475475
name: THIRDPARTY
476476
- run: cp -f THIRDPARTY NOTICE

.github/workflows/build-ui.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Pack tarball
2323
run: npm pack
2424
- name: Upload tarball as artifact
25-
uses: actions/upload-artifact@v5
25+
uses: actions/upload-artifact@v6
2626
with:
2727
name: UCC-UI-lib-tarball
2828
path: "ui/*.tgz"
@@ -44,7 +44,7 @@ jobs:
4444
- name: List deps into dependencies.txt
4545
run: yarn list --prod --depth 0 | python ../.github/scripts/format_yarn_deps.py --output-file=dist/dependencies.txt
4646
- name: Upload dist with name UCC-UI-build
47-
uses: actions/upload-artifact@v5
47+
uses: actions/upload-artifact@v6
4848
with:
4949
name: UCC-UI-build
5050
path: ui/dist/build

.github/workflows/storybook-visual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
git add \*.png
4545
git diff --staged --exit-code || (git commit -S -m "update screenshots" && git push)
46-
- uses: actions/upload-artifact@v5
46+
- uses: actions/upload-artifact@v6
4747
name: "Upload test report"
4848
if: ${{ failure() }}
4949
with:

.github/workflows/ta-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: poetry build
5656

5757
- name: Upload UCC Artifact
58-
uses: actions/upload-artifact@v5
58+
uses: actions/upload-artifact@v6
5959
with:
6060
name: ucc-package-whl
6161
path: UCC/dist/*.whl
@@ -112,7 +112,7 @@ jobs:
112112
run: curl -sSL https://install.python-poetry.org | python3 - --version ${{env.POETRY_VERSION}} && poetry self add poetry-plugin-export@${{env.POETRY_EXPORT_PLUGIN_VERSION}}
113113

114114
- name: Download UCC Artifact
115-
uses: actions/download-artifact@v6
115+
uses: actions/download-artifact@v7
116116
with:
117117
name: ucc-package-whl
118118
path: UCC

0 commit comments

Comments
 (0)