Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
8c42db75
Unverified
Commit
8c42db75
authored
1 month ago
by
dependabot[bot]
Committed by
GitHub
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
Bump actions/upload-artifact from 4.6.0 to 4.6.1 (#139161)
parent
183bbcd1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/workflows/builder.yml
+1
-1
1 addition, 1 deletion
.github/workflows/builder.yml
.github/workflows/ci.yaml
+11
-11
11 additions, 11 deletions
.github/workflows/ci.yaml
.github/workflows/wheels.yml
+4
-4
4 additions, 4 deletions
.github/workflows/wheels.yml
with
16 additions
and
16 deletions
.github/workflows/builder.yml
+
1
−
1
View file @
8c42db75
...
@@ -69,7 +69,7 @@ jobs:
...
@@ -69,7 +69,7 @@ jobs:
run
:
find ./homeassistant/components/*/translations -name "*.json" | tar zcvf translations.tar.gz -T -
run
:
find ./homeassistant/components/*/translations -name "*.json" | tar zcvf translations.tar.gz -T -
-
name
:
Upload translations
-
name
:
Upload translations
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
translations
name
:
translations
path
:
translations.tar.gz
path
:
translations.tar.gz
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/ci.yaml
+
11
−
11
View file @
8c42db75
...
@@ -537,7 +537,7 @@ jobs:
...
@@ -537,7 +537,7 @@ jobs:
python --version
python --version
uv pip freeze >> pip_freeze.txt
uv pip freeze >> pip_freeze.txt
-
name
:
Upload pip_freeze artifact
-
name
:
Upload pip_freeze artifact
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
pip-freeze-${{ matrix.python-version }}
name
:
pip-freeze-${{ matrix.python-version }}
path
:
pip_freeze.txt
path
:
pip_freeze.txt
...
@@ -661,7 +661,7 @@ jobs:
...
@@ -661,7 +661,7 @@ jobs:
. venv/bin/activate
. venv/bin/activate
python -m script.licenses extract --output-file=licenses-${{ matrix.python-version }}.json
python -m script.licenses extract --output-file=licenses-${{ matrix.python-version }}.json
-
name
:
Upload licenses
-
name
:
Upload licenses
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
licenses-${{ github.run_number }}-${{ matrix.python-version }}
name
:
licenses-${{ github.run_number }}-${{ matrix.python-version }}
path
:
licenses-${{ matrix.python-version }}.json
path
:
licenses-${{ matrix.python-version }}.json
...
@@ -877,7 +877,7 @@ jobs:
...
@@ -877,7 +877,7 @@ jobs:
. venv/bin/activate
. venv/bin/activate
python -m script.split_tests ${{ needs.info.outputs.test_group_count }} tests
python -m script.split_tests ${{ needs.info.outputs.test_group_count }} tests
-
name
:
Upload pytest_buckets
-
name
:
Upload pytest_buckets
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
pytest_buckets
name
:
pytest_buckets
path
:
pytest_buckets.txt
path
:
pytest_buckets.txt
...
@@ -980,14 +980,14 @@ jobs:
...
@@ -980,14 +980,14 @@ jobs:
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt
-
name
:
Upload pytest output
-
name
:
Upload pytest output
if
:
success() || failure() && steps.pytest-full.conclusion == 'failure'
if
:
success() || failure() && steps.pytest-full.conclusion == 'failure'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{ matrix.group }}
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{ matrix.group }}
path
:
pytest-*.txt
path
:
pytest-*.txt
overwrite
:
true
overwrite
:
true
-
name
:
Upload coverage artifact
-
name
:
Upload coverage artifact
if
:
needs.info.outputs.skip_coverage != 'true'
if
:
needs.info.outputs.skip_coverage != 'true'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
coverage-${{ matrix.python-version }}-${{ matrix.group }}
name
:
coverage-${{ matrix.python-version }}-${{ matrix.group }}
path
:
coverage.xml
path
:
coverage.xml
...
@@ -1108,7 +1108,7 @@ jobs:
...
@@ -1108,7 +1108,7 @@ jobs:
2>&1 | tee pytest-${{ matrix.python-version }}-${mariadb}.txt
2>&1 | tee pytest-${{ matrix.python-version }}-${mariadb}.txt
-
name
:
Upload pytest output
-
name
:
Upload pytest output
if
:
success() || failure() && steps.pytest-partial.conclusion == 'failure'
if
:
success() || failure() && steps.pytest-partial.conclusion == 'failure'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{
steps.pytest-partial.outputs.mariadb }}
steps.pytest-partial.outputs.mariadb }}
...
@@ -1116,7 +1116,7 @@ jobs:
...
@@ -1116,7 +1116,7 @@ jobs:
overwrite
:
true
overwrite
:
true
-
name
:
Upload coverage artifact
-
name
:
Upload coverage artifact
if
:
needs.info.outputs.skip_coverage != 'true'
if
:
needs.info.outputs.skip_coverage != 'true'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
coverage-${{ matrix.python-version }}-${{
name
:
coverage-${{ matrix.python-version }}-${{
steps.pytest-partial.outputs.mariadb }}
steps.pytest-partial.outputs.mariadb }}
...
@@ -1239,7 +1239,7 @@ jobs:
...
@@ -1239,7 +1239,7 @@ jobs:
2>&1 | tee pytest-${{ matrix.python-version }}-${postgresql}.txt
2>&1 | tee pytest-${{ matrix.python-version }}-${postgresql}.txt
-
name
:
Upload pytest output
-
name
:
Upload pytest output
if
:
success() || failure() && steps.pytest-partial.conclusion == 'failure'
if
:
success() || failure() && steps.pytest-partial.conclusion == 'failure'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{
steps.pytest-partial.outputs.postgresql }}
steps.pytest-partial.outputs.postgresql }}
...
@@ -1247,7 +1247,7 @@ jobs:
...
@@ -1247,7 +1247,7 @@ jobs:
overwrite
:
true
overwrite
:
true
-
name
:
Upload coverage artifact
-
name
:
Upload coverage artifact
if
:
needs.info.outputs.skip_coverage != 'true'
if
:
needs.info.outputs.skip_coverage != 'true'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
coverage-${{ matrix.python-version }}-${{
name
:
coverage-${{ matrix.python-version }}-${{
steps.pytest-partial.outputs.postgresql }}
steps.pytest-partial.outputs.postgresql }}
...
@@ -1382,14 +1382,14 @@ jobs:
...
@@ -1382,14 +1382,14 @@ jobs:
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt
2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt
-
name
:
Upload pytest output
-
name
:
Upload pytest output
if
:
success() || failure() && steps.pytest-partial.conclusion == 'failure'
if
:
success() || failure() && steps.pytest-partial.conclusion == 'failure'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{ matrix.group }}
name
:
pytest-${{ github.run_number }}-${{ matrix.python-version }}-${{ matrix.group }}
path
:
pytest-*.txt
path
:
pytest-*.txt
overwrite
:
true
overwrite
:
true
-
name
:
Upload coverage artifact
-
name
:
Upload coverage artifact
if
:
needs.info.outputs.skip_coverage != 'true'
if
:
needs.info.outputs.skip_coverage != 'true'
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
coverage-${{ matrix.python-version }}-${{ matrix.group }}
name
:
coverage-${{ matrix.python-version }}-${{ matrix.group }}
path
:
coverage.xml
path
:
coverage.xml
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/wheels.yml
+
4
−
4
View file @
8c42db75
...
@@ -91,7 +91,7 @@ jobs:
...
@@ -91,7 +91,7 @@ jobs:
) > build_constraints.txt
) > build_constraints.txt
-
name
:
Upload env_file
-
name
:
Upload env_file
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
env_file
name
:
env_file
path
:
./.env_file
path
:
./.env_file
...
@@ -99,14 +99,14 @@ jobs:
...
@@ -99,14 +99,14 @@ jobs:
overwrite
:
true
overwrite
:
true
-
name
:
Upload build_constraints
-
name
:
Upload build_constraints
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
build_constraints
name
:
build_constraints
path
:
./build_constraints.txt
path
:
./build_constraints.txt
overwrite
:
true
overwrite
:
true
-
name
:
Upload requirements_diff
-
name
:
Upload requirements_diff
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
requirements_diff
name
:
requirements_diff
path
:
./requirements_diff.txt
path
:
./requirements_diff.txt
...
@@ -118,7 +118,7 @@ jobs:
...
@@ -118,7 +118,7 @@ jobs:
python -m script.gen_requirements_all ci
python -m script.gen_requirements_all ci
-
name
:
Upload requirements_all_wheels
-
name
:
Upload requirements_all_wheels
uses
:
actions/upload-artifact@v4.6.
0
uses
:
actions/upload-artifact@v4.6.
1
with
:
with
:
name
:
requirements_all_wheels
name
:
requirements_all_wheels
path
:
./requirements_all_wheels_*.txt
path
:
./requirements_all_wheels_*.txt
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment