Skip to content
7 changes: 6 additions & 1 deletion .github/workflows/jacoco_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ jobs:
with:
java-version: "adopt@1.8"

- name: Setup Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: "3.14"

- name: Setup database
run: |
psql postgresql://postgres:postgres@localhost:5432/mag_db -f balta/src/test/resources/db/postgres/02_users.ddl
Expand All @@ -95,7 +100,7 @@ jobs:

- name: Check coverage thresholds and add reports in PR comments
id: jacoco
uses: MoranaApps/jacoco-report@54bfe284d1119dc917dddba80517c54c5bcf3627
uses: MoranaApps/jacoco-report@52a5f9c278aaf61700c9975e61a0853875c9d156
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add in the comment, what version it is. E.g.
` uses: MoranaApps/jacoco-report@52a5f9c #v3.14

with:
token: '${{ secrets.GITHUB_TOKEN }}'
paths: |
Expand Down
Loading