Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/build_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
mvn clean install -T 4 -Pprod -DskipTests

- name: Upload compiled output
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: compiled-output
retention-days: 1
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Save .jar artifact
run: mkdir -p ./push && cp obp-api/target/obp-api.jar ./push/

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ github.sha }}
path: push/
Expand Down Expand Up @@ -312,15 +312,15 @@ jobs:

- name: Upload Maven build log — shard ${{ matrix.shard }}
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: maven-build-log-shard${{ matrix.shard }}
if-no-files-found: ignore
path: maven-build-shard${{ matrix.shard }}.log

- name: Upload test reports — shard ${{ matrix.shard }}
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-reports-shard${{ matrix.shard }}
if-no-files-found: ignore
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
mvn clean install -T 4 -Pprod -DskipTests

- name: Upload compiled output
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: compiled-output
retention-days: 1
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Save .jar artifact
run: mkdir -p ./pull && cp obp-api/target/obp-api.jar ./pull/

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ github.sha }}
path: pull/
Expand Down Expand Up @@ -318,15 +318,15 @@ jobs:

- name: Upload Maven build log — shard ${{ matrix.shard }}
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: maven-build-log-shard${{ matrix.shard }}
if-no-files-found: ignore
path: maven-build-shard${{ matrix.shard }}.log

- name: Upload test reports — shard ${{ matrix.shard }}
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-reports-shard${{ matrix.shard }}
if-no-files-found: ignore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_worktree_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Upload build log
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: worktree-build-log
if-no-files-found: ignore
Expand Down
Loading