Skip to content

Commit 35ee6a6

Browse files
Heiko KieselWeltraumschaf
authored andcommitted
Update comments and refs in workflows
Signed-off-by: Heiko Kiesel <heiko.kiesel@iteratec.com>
1 parent 01ca54d commit 35ee6a6

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
# This workflow will publish a Java project with Gradle
6-
# For maven build see: https://github.com/marketplace/actions/gradle-build-action
7-
# For maven publishing see: https://docs.github.com/en/actions/publishing-packages/publishing-java-packages-with-maven
5+
# This workflow will publish a Java project with Maven
6+
# For Maven Release plugin see: https://maven.apache.org/maven-release/maven-release-plugin/
7+
# For GitHub release see: https://github.com/marketplace/actions/gh-release
88

99
name: Publish Release
1010

@@ -91,8 +91,7 @@ jobs:
9191
- name: "Get previous tag"
9292
id: previous_tag
9393
uses: WyriHaximus/github-action-get-previous-tag@v1
94-
95-
# See https://github.com/marketplace/actions/gh-release
94+
9695
- name: "Create GitHub Release"
9796
uses: softprops/action-gh-release@v1
9897
with:

.github/workflows/snapshot.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
# This workflow will publish a Java project with Gradle
6-
# For maven build see: https://github.com/marketplace/actions/gradle-build-action
7-
# For maven publishing see: https://docs.github.com/en/actions/publishing-packages/publishing-java-packages-with-maven
5+
# This workflow will publish a Java project with Maven
6+
# See https://github.com/jonashackt/github-actions-release-maven
87

98
name: Publish Snapshot
109

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
# This workflow will test a Java project with Gradle
6-
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
5+
# This workflow will test a Java project with Maven
6+
# See https://github.com/jonashackt/github-actions-release-maven
77

88
name: Java Tests
99
on: [pull_request, push, workflow_dispatch]
@@ -23,4 +23,4 @@ jobs:
2323
distribution: temurin
2424

2525
- name: Build with Maven
26-
run: mvn --B --update-snapshots verify
26+
run: mvn -U -B verify # -U: force updates for dependencies, -B: no user input

0 commit comments

Comments
 (0)