Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/empaqueta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
ls $GITHUB_WORKSPACE/paquete/

- name: Subir paquete como artefacto del workflow
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: assets-for-download
path: paquete
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/envia-a-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
"$IMAGE_REF"

- name: Upload SBOM artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom-dockerhub-${{ github.sha }}
path: sbom.spdx.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/envia-a-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:


- name: Upload SBOM artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom-ghcr-${{ github.sha }}
path: sbom.spdx.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-app-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ jobs:
- name: Subir reporte de resultados de pruebas
# if: always() persiste el reporte aunque pytest falle, para poder revisar qué falló.
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: junit-${{ matrix.python-version }}
path: junit-${{ matrix.python-version }}.xml
if-no-files-found: error

- name: Subir reporte de cobertura
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-${{ matrix.python-version }}
path: coverage.xml
Expand Down
Loading