Skip to content

Commit 3acf923

Browse files
committed
Update dependencies
1 parent 029e669 commit 3acf923

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# SETUP BUILD ENVIRONMENT
2222
- id: prepare-maven-build
2323
name: Prepare Maven build
24-
uses: sualeh/prepare-maven-build@v1.3.5
24+
uses: sualeh/prepare-maven-build@v1.4.0
2525
with:
2626
java-version: 8
2727

@@ -38,7 +38,7 @@ jobs:
3838
--batch-mode \
3939
-Dtestcoverage \
4040
clean install \
41-
org.jacoco:jacoco-maven-plugin:0.8.8:report-aggregate
41+
org.jacoco:jacoco-maven-plugin:0.8.11:report-aggregate
4242
4343
# GET TEST RESULTS
4444
- id: publish-test-results

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# SETUP BUILD ENVIRONMENT
2121
- id: prepare-maven-build
2222
name: Prepare Maven build
23-
uses: sualeh/prepare-maven-build@v1.3.5
23+
uses: sualeh/prepare-maven-build@v1.4.0
2424
with:
2525
java-version: 8
2626

@@ -38,17 +38,17 @@ jobs:
3838
# CREATE GITHUB RELEASE
3939
- id: create-release
4040
name: Create GitHub release
41-
uses: actions/create-release@latest
42-
env:
43-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41+
uses: softprops/action-gh-release@v1
42+
if: startsWith(github.ref, 'refs/tags/')
4443
with:
45-
tag_name: ${{ github.ref }}
46-
release_name: ${{ github.ref }}
47-
body: |
48-
SchemaCrawler ${{ github.ref }} release at last commit ${{ github.sha }}
49-
See the change history at https://www.schemacrawler.com/changes-report.html
44+
token: ${{ secrets.GITHUB_TOKEN }}
45+
name: ${{ github.ref_name }}
5046
draft: false
5147
prerelease: false
48+
body: |
49+
SchemaCrawler ${{ github.event.release.tag_name }} release at last commit ${{ github.sha }}
50+
See the change history at https://www.schemacrawler.com/changes-report.html
51+
generate_release_notes: true
5252

5353
# PUBLISH TO CENTRAL REPOSITORY
5454
- id: install-secret-key

0 commit comments

Comments
 (0)