Skip to content

Commit f8c4324

Browse files
committed
update readme with v2
1 parent 92f9e99 commit f8c4324

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/maven-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
# jobs:
99
# publish:
10-
# uses: FAIRDataTeam/github-workflows/.github/workflows/maven-publish.yml@v1
10+
# uses: FAIRDataTeam/github-workflows/.github/workflows/maven-publish.yml@v2
1111
# secrets: inherit
1212
#
1313
# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idsecretsinherit

CONTRIBUTING

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Also make sure to update the *major version* tag after creating a new release.
88
This can be done via the command line, for example:
99

1010
```bash
11-
git tag -a v1 -f
11+
git tag -a v2 -f
1212
git push --tags -f
1313
```
1414

1515
with `-a` (annotated) and `-f` (force).
1616

17-
This overrides the existing `v1` tag and keeps the original message.
17+
This overrides the existing `v2` tag and keeps the original message.
1818

1919
TODO: The major version tag update could also be automated via another workflow.
2020

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ on:
3030
types: [created]
3131
jobs:
3232
test:
33-
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-verify.yml@v1
33+
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-verify.yml@v2
3434
publish:
3535
needs: test
36-
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-publish.yml@v1
36+
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-publish.yml@v2
3737
secrets: inherit
3838
```
3939
@@ -42,7 +42,7 @@ It is also possible to specify additional options for the maven-verify workflow,
4242
```yaml
4343
jobs:
4444
test:
45-
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-verify.yml@v1
45+
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-verify.yml@v2
4646
with:
4747
mvn_options: -Dgpg.skip tidy:check com.github.spotbugs:spotbugs-maven-plugin:check
4848
```
@@ -89,7 +89,7 @@ on:
8989
9090
jobs:
9191
publish:
92-
uses: FAIRDataTeam/github-workflows/.github/workflows/docker-publish.yml@v1
92+
uses: FAIRDataTeam/github-workflows/.github/workflows/docker-publish.yml@v2
9393
secrets: inherit
9494
with:
9595
push: ${{ github.event_name != 'pull_request' }}
@@ -105,7 +105,7 @@ on:
105105
106106
jobs:
107107
publish:
108-
uses: FAIRDataTeam/github-workflows/.github/workflows/docker-publish.yml@v1
108+
uses: FAIRDataTeam/github-workflows/.github/workflows/docker-publish.yml@v2
109109
secrets: inherit
110110
with:
111111
push: ${{ github.event_name == 'release' && github.event.action == 'created' }}
@@ -114,7 +114,7 @@ jobs:
114114
## Releases
115115

116116
Releases follow [semantic versioning].
117-
To get the latest stable release you can refer to the major version only, e.g. `v1` instead of `v1.2.3`.
117+
To get the latest stable release you can refer to the major version only, e.g. `v2` instead of `v2.3.4`.
118118
Also see [action versioning].
119119

120120
>[!NOTE]

0 commit comments

Comments
 (0)