Skip to content

Commit c910508

Browse files
authored
Merge pull request #881 from sir-gon/renovate/major-github-artifact-actions
Update GitHub Artifact Actions (major)
2 parents ac7ea9f + 91b8006 commit c910508

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
tags: |
3535
${{ env.IMAGE_NAME }}:lint
3636
- name: "LINT: Upload artifact"
37-
uses: actions/upload-artifact@v6
37+
uses: actions/upload-artifact@v7
3838
with:
3939
name: ${{ env.ARTIFACT_NAME }}_lint
4040
path: /tmp/${{ env.ARTIFACT_NAME }}_lint.tar
@@ -49,7 +49,7 @@ jobs:
4949
tags: |
5050
${{ env.IMAGE_NAME }}:test
5151
- name: "TEST: Upload artifact"
52-
uses: actions/upload-artifact@v6
52+
uses: actions/upload-artifact@v7
5353
with:
5454
name: ${{ env.ARTIFACT_NAME }}_test
5555
path: /tmp/${{ env.ARTIFACT_NAME }}_test.tar
@@ -65,7 +65,7 @@ jobs:
6565
${{ env.IMAGE_NAME }}:latest
6666
${{ env.IMAGE_NAME }}:${{ github.sha }}
6767
- name: "PRODUCTION: Upload artifact"
68-
uses: actions/upload-artifact@v6
68+
uses: actions/upload-artifact@v7
6969
with:
7070
name: ${{ env.ARTIFACT_NAME }}_prod
7171
path: /tmp/${{ env.ARTIFACT_NAME }}_prod.tar
@@ -76,7 +76,7 @@ jobs:
7676
needs: build
7777
steps:
7878
- name: Download artifact
79-
uses: actions/download-artifact@v7
79+
uses: actions/download-artifact@v8
8080
with:
8181
name: ${{ env.ARTIFACT_NAME }}_lint
8282
path: /tmp/
@@ -96,7 +96,7 @@ jobs:
9696
needs: build
9797
steps:
9898
- name: Download artifact
99-
uses: actions/download-artifact@v7
99+
uses: actions/download-artifact@v8
100100
with:
101101
name: ${{ env.ARTIFACT_NAME }}_test
102102
path: /tmp/
@@ -161,7 +161,7 @@ jobs:
161161
needs: build
162162
steps:
163163
- name: Download artifact
164-
uses: actions/download-artifact@v7
164+
uses: actions/download-artifact@v8
165165
with:
166166
name: ${{ env.ARTIFACT_NAME }}_prod
167167
path: /tmp/

.github/workflows/node-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
# Subir cobertura como artifact para que otros jobs lo usen
3737
- name: Upload coverage artifact
38-
uses: actions/upload-artifact@v6
38+
uses: actions/upload-artifact@v7
3939
with:
4040
name: coverage-report
4141
path: coverage # o la carpeta donde jest genera los reportes
@@ -53,7 +53,7 @@ jobs:
5353
fetch-depth: 0
5454

5555
- name: Download coverage artifact
56-
uses: actions/download-artifact@v7
56+
uses: actions/download-artifact@v8
5757
with:
5858
name: coverage-report
5959
path: coverage
@@ -76,7 +76,7 @@ jobs:
7676
fetch-depth: 0
7777

7878
- name: Download coverage artifact
79-
uses: actions/download-artifact@v7
79+
uses: actions/download-artifact@v8
8080
with:
8181
name: coverage-report
8282
path: coverage

0 commit comments

Comments
 (0)