Skip to content

Commit a14f3c4

Browse files
authored
Merge pull request #97 from JohT/renovate/actions-upload-artifact-4.x
Update actions/upload-artifact action to v4
2 parents 9fd942f + 404cae7 commit a14f3c4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/code-structure-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
# Upload logs and unfinished reports in case of an error for troubleshooting
137137
- name: Archive failed run with logs and unfinished results
138138
if: failure()
139-
uses: actions/upload-artifact@v3
139+
uses: actions/upload-artifact@v4
140140
with:
141141
name: code-analysis-logs-java-${{ matrix.java }}-python-${{ matrix.python }}-mambaforge-${{ matrix.mambaforge }}
142142
path: |
@@ -147,7 +147,7 @@ jobs:
147147
# Upload successful results in case they are needed for troubleshooting
148148
- name: Archive successful results
149149
if: success()
150-
uses: actions/upload-artifact@v3
150+
uses: actions/upload-artifact@v4
151151
with:
152152
name: code-report-results-java-${{ matrix.java }}-python-${{ matrix.python }}-mambaforge-${{ matrix.mambaforge }}
153153
path: ./results

.github/workflows/cypher-reference-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
./../scripts/documentation/generateCypherReference.sh
3434
3535
- name: Archive generated cypher reference document
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: cypher-reference-document
3939
path: ./cypher/CYPHER.md

.github/workflows/environment-variables-reference-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
./documentation/generateEnvironmentVariableReference.sh
3434
3535
- name: Archive generated environment variables reference document
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: environment-variables-reference-document
3939
path: ./scripts/ENVIRONMENT_VARIABLES.md

.github/workflows/scripts-reference-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
./documentation/generateScriptReference.sh
3434
3535
- name: Archive generated scripts reference document
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: scripts-reference-document
3939
path: ./scripts/SCRIPTS.md

0 commit comments

Comments
 (0)