Skip to content

Commit

Permalink
fix: broken release process (#172)
Browse files Browse the repository at this point in the history
* ci: bump up actions

Signed-off-by: Kengo TODA <toda_k@henry.jp>

* build: bump up nodejs version

Signed-off-by: Kengo TODA <toda_k@henry.jp>

* docs: update version used in the README

Signed-off-by: Kengo TODA <toda_k@henry.jp>

Signed-off-by: Kengo TODA <toda_k@henry.jp>
  • Loading branch information
KengoTODA authored Oct 13, 2022
1 parent da10ac8 commit 5ef6f1d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,11 @@ jobs:
cond: ${{ github.event_name == 'pull_request_target' }}
if_true: refs/pull/${{ github.event.pull_request.number }}/merge
if_false: ${{ github.ref }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ steps.condval.outputs.value }}
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- uses: actions/setup-java@v2
- uses: actions/setup-java@v3
with:
java-version: 8
distribution: temurin
Expand All @@ -33,9 +30,9 @@ jobs:
server-password: MAVEN_CENTRAL_TOKEN
gpg-private-key: ${{ secrets.SIGNING_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
node-version-file: '.nvmrc'
- run: |
./mvnw -V -B verify
npm ci
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14
16
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$ mvn archetype:generate \
-DarchetypeArtifactId=spotbugs-archetype \
-DarchetypeGroupId=com.github.spotbugs \
-DarchetypeVersion=0.2.5
-DarchetypeVersion=0.2.6
```

## License
Expand Down

0 comments on commit 5ef6f1d

Please sign in to comment.