Skip to content

Commit be77488

Browse files
Bump actions/upload-artifact from 4.6.2 to 5.0.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 5.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ae6391b commit be77488

3 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: find ./homeassistant/components/*/translations -name "*.json" | tar zcvf translations.tar.gz -T -
7070

7171
- name: Upload translations
72-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
72+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7373
with:
7474
name: translations
7575
path: translations.tar.gz

.github/workflows/ci.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ jobs:
596596
python --version
597597
uv pip freeze >> pip_freeze.txt
598598
- name: Upload pip_freeze artifact
599-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
599+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
600600
with:
601601
name: pip-freeze-${{ matrix.python-version }}
602602
path: pip_freeze.txt
@@ -753,7 +753,7 @@ jobs:
753753
. venv/bin/activate
754754
python -m script.licenses extract --output-file=licenses-${{ matrix.python-version }}.json
755755
- name: Upload licenses
756-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
756+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
757757
with:
758758
name: licenses-${{ github.run_number }}-${{ matrix.python-version }}
759759
path: licenses-${{ matrix.python-version }}.json
@@ -979,7 +979,7 @@ jobs:
979979
. venv/bin/activate
980980
python -m script.split_tests ${{ needs.info.outputs.test_group_count }} tests
981981
- name: Upload pytest_buckets
982-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
982+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
983983
with:
984984
name: pytest_buckets
985985
path: pytest_buckets.txt
@@ -1095,14 +1095,14 @@ jobs:
10951095
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt
10961096
- name: Upload pytest output
10971097
if: success() || failure() && steps.pytest-full.conclusion == 'failure'
1098-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1098+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
10991099
with:
11001100
name: pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{ matrix.group }}
11011101
path: pytest-*.txt
11021102
overwrite: true
11031103
- name: Upload coverage artifact
11041104
if: needs.info.outputs.skip_coverage != 'true'
1105-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1105+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
11061106
with:
11071107
name: coverage-${{ matrix.python-version }}-${{ matrix.group }}
11081108
path: coverage.xml
@@ -1115,7 +1115,7 @@ jobs:
11151115
mv "junit.xml-tmp" "junit.xml"
11161116
- name: Upload test results artifact
11171117
if: needs.info.outputs.skip_coverage != 'true' && !cancelled()
1118-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1118+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
11191119
with:
11201120
name: test-results-full-${{ matrix.python-version }}-${{ matrix.group }}
11211121
path: junit.xml
@@ -1248,15 +1248,15 @@ jobs:
12481248
2>&1 | tee pytest-${{ matrix.python-version }}-${mariadb}.txt
12491249
- name: Upload pytest output
12501250
if: success() || failure() && steps.pytest-partial.conclusion == 'failure'
1251-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1251+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
12521252
with:
12531253
name: pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{
12541254
steps.pytest-partial.outputs.mariadb }}
12551255
path: pytest-*.txt
12561256
overwrite: true
12571257
- name: Upload coverage artifact
12581258
if: needs.info.outputs.skip_coverage != 'true'
1259-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1259+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
12601260
with:
12611261
name: coverage-${{ matrix.python-version }}-${{
12621262
steps.pytest-partial.outputs.mariadb }}
@@ -1270,7 +1270,7 @@ jobs:
12701270
mv "junit.xml-tmp" "junit.xml"
12711271
- name: Upload test results artifact
12721272
if: needs.info.outputs.skip_coverage != 'true' && !cancelled()
1273-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1273+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
12741274
with:
12751275
name: test-results-mariadb-${{ matrix.python-version }}-${{
12761276
steps.pytest-partial.outputs.mariadb }}
@@ -1405,15 +1405,15 @@ jobs:
14051405
2>&1 | tee pytest-${{ matrix.python-version }}-${postgresql}.txt
14061406
- name: Upload pytest output
14071407
if: success() || failure() && steps.pytest-partial.conclusion == 'failure'
1408-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1408+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
14091409
with:
14101410
name: pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{
14111411
steps.pytest-partial.outputs.postgresql }}
14121412
path: pytest-*.txt
14131413
overwrite: true
14141414
- name: Upload coverage artifact
14151415
if: needs.info.outputs.skip_coverage != 'true'
1416-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1416+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
14171417
with:
14181418
name: coverage-${{ matrix.python-version }}-${{
14191419
steps.pytest-partial.outputs.postgresql }}
@@ -1427,7 +1427,7 @@ jobs:
14271427
mv "junit.xml-tmp" "junit.xml"
14281428
- name: Upload test results artifact
14291429
if: needs.info.outputs.skip_coverage != 'true' && !cancelled()
1430-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1430+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
14311431
with:
14321432
name: test-results-postgres-${{ matrix.python-version }}-${{
14331433
steps.pytest-partial.outputs.postgresql }}
@@ -1574,14 +1574,14 @@ jobs:
15741574
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt
15751575
- name: Upload pytest output
15761576
if: success() || failure() && steps.pytest-partial.conclusion == 'failure'
1577-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1577+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
15781578
with:
15791579
name: pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{ matrix.group }}
15801580
path: pytest-*.txt
15811581
overwrite: true
15821582
- name: Upload coverage artifact
15831583
if: needs.info.outputs.skip_coverage != 'true'
1584-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1584+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
15851585
with:
15861586
name: coverage-${{ matrix.python-version }}-${{ matrix.group }}
15871587
path: coverage.xml
@@ -1594,7 +1594,7 @@ jobs:
15941594
mv "junit.xml-tmp" "junit.xml"
15951595
- name: Upload test results artifact
15961596
if: needs.info.outputs.skip_coverage != 'true' && !cancelled()
1597-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
1597+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
15981598
with:
15991599
name: test-results-partial-${{ matrix.python-version }}-${{ matrix.group }}
16001600
path: junit.xml

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,22 +91,22 @@ jobs:
9191
) > build_constraints.txt
9292
9393
- name: Upload env_file
94-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
94+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9595
with:
9696
name: env_file
9797
path: ./.env_file
9898
include-hidden-files: true
9999
overwrite: true
100100

101101
- name: Upload build_constraints
102-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
102+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
103103
with:
104104
name: build_constraints
105105
path: ./build_constraints.txt
106106
overwrite: true
107107

108108
- name: Upload requirements_diff
109-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
109+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
110110
with:
111111
name: requirements_diff
112112
path: ./requirements_diff.txt
@@ -118,7 +118,7 @@ jobs:
118118
python -m script.gen_requirements_all ci
119119
120120
- name: Upload requirements_all_wheels
121-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
121+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
122122
with:
123123
name: requirements_all_wheels
124124
path: ./requirements_all_wheels_*.txt

0 commit comments

Comments
 (0)