Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev/docs-jython' into dev/docs-j…
Browse files Browse the repository at this point in the history
…ython
  • Loading branch information
wfouche committed Feb 10, 2025
2 parents 37084a1 + f0e498d commit 5b22510
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ jobs:
run: |
./gradlew --no-daemon jacocoTestReport
- name: Upload Test Report
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@v4
if: always() # always run even if the previous step fails
with:
name: junit-test-results
name: junit-test-results-${{ matrix.os }}
path: '**/build/test-results/test/TEST-*.xml'
retention-days: 1
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2
Expand All @@ -103,13 +103,13 @@ jobs:
powershell
choco pack build/choco/jbang.nuspec
- name: Archive build results
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@v4 # v3
if: always()
with:
name: ${{ runner.os }}-build-${{ github.sha }}
path: build
- name: Upload jbang.zip
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@v4 # v3
if: always() && runner.os != 'Windows'
with:
name: jbang-${{ github.sha }}
Expand All @@ -135,7 +135,7 @@ jobs:
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
- uses: actions/download-artifact@v4
with:
name: ${{ runner.os }}-build-${{ github.sha }}
path: build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
setup-java: false
- name: JReleaser publish output
if: always()
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@v4
with:
name: jreleaser-publish
path: |
Expand All @@ -74,14 +74,14 @@ jobs:
setup-java: false
- name: JReleaser announce output
if: always()
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@v4 # v3
with:
name: jreleaser-announce
path: |
out/jreleaser/trace.log
out/jreleaser/output.properties
- name: upload-choco
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@v4 # v3
with:
name: build-choco
path: build/choco
Expand All @@ -91,7 +91,7 @@ jobs:
name: publish-choco
continue-on-error: true
steps:
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
- uses: actions/download-artifact@9v4 # v3
with:
name: build-choco
path: build/choco
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Set up GitHub CLI
uses: actions/setup-gh@v2
#- name: Set up GitHub CLI
# uses: actions/setup-gh@v2

- name: Get workflow run details
id: workflow_details
Expand All @@ -38,11 +38,13 @@ jobs:
echo "The PR number is: ${{ env.pr_number }}"
- name: Download Test Report
uses: dawidd6/action-download-artifact@268677152d06ba59fcec7a7f0b5d961b6ccd7e1e # v2
uses: actions/download-artifact@v4 # v2
with:
name: junit-test-results
workflow: ${{ github.event.workflow.id }}
run_id: ${{ github.event.workflow_run.id }}
name: junit-test-results-*
#path: test-${{ matrix.os }}
#pattern: my-artifact-*
merge-multiple: true
run-id: ${{ github.event.workflow_run.id }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@62516aa379bff6370c95fd5894d5a27fb6619d9b # v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
setup-java: false
- name: JReleaser output
if: always()
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
uses: actions/upload-artifact@v4
with:
name: jreleaser-release
path: |
Expand Down

0 comments on commit 5b22510

Please sign in to comment.