Skip to content

Commit a6fc1a4

Browse files
committed
Update GitHub Actions and dependencies to latest versions
1 parent bee62b0 commit a6fc1a4

File tree

8 files changed

+20
-37
lines changed

8 files changed

+20
-37
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

15-
- uses: actions/setup-java@v3
15+
- uses: actions/setup-java@v5
1616
with:
1717
distribution: 'temurin'
18-
java-version: '11'
18+
java-version: '21'
1919
cache: 'maven'
2020

2121
- name: Build package

.github/workflows/release-voyager.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

16-
- uses: actions/setup-java@v3
16+
- uses: actions/setup-java@v5
1717
with:
1818
distribution: 'temurin'
19-
java-version: '11'
19+
java-version: '21'
2020
cache: 'maven'
2121

2222
- name: Extract Semver

.github/workflows/release.yml

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

17-
- uses: actions/setup-java@v3
17+
- uses: actions/setup-java@v5
1818
with:
1919
distribution: 'temurin'
20-
java-version: '11'
20+
java-version: '21'
2121
cache: 'maven'
2222

2323
- name: Extract Semver
@@ -38,12 +38,10 @@ jobs:
3838
run: mvn clean package
3939

4040
- name: Setup Node
41-
uses: actions/setup-node@v3
41+
uses: actions/setup-node@v6
4242
with:
43-
node-version: '18.x'
43+
node-version: '24.x'
4444
cache: 'npm'
45-
registry-url: 'https://npm.pkg.github.com'
46-
scope: '@dxworks'
4745

4846
- name: Prepare Node App
4947
run: |
@@ -57,23 +55,8 @@ jobs:
5755
env:
5856
VERSION: ${{ steps.semver_parser.outputs.semver }}
5957

60-
- name: Publish NPM
61-
run: npm publish
62-
env:
63-
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64-
65-
- name: Setup Node with NPM Package Registry
66-
uses: actions/setup-node@v3
67-
with:
68-
node-version: '18.x'
69-
cache: 'npm'
70-
registry-url: 'https://registry.npmjs.org'
71-
scope: '@dxworks'
72-
7358
- name: Publish on NPM
7459
run: npm publish --access public
75-
env:
76-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
7760

7861
- name: Prepare Release Notes
7962
run: touch ${{ github.workspace }}/releaseNotes/v${{ steps.semver_parser.outputs.semver }}.md

chr-helper/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>inspectorgit</artifactId>
77
<groupId>org.dxworks.inspectorgit</groupId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.4.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>org.dxworks.inspectorgit</groupId>
1616
<artifactId>core</artifactId>
17-
<version>1.3.0-SNAPSHOT</version>
17+
<version>1.4.0-SNAPSHOT</version>
1818
</dependency>
1919
</dependencies>
2020

core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>inspectorgit</artifactId>
77
<groupId>org.dxworks.inspectorgit</groupId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.4.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -19,12 +19,12 @@
1919
<dependency>
2020
<groupId>org.dxworks.inspectorgit</groupId>
2121
<artifactId>utils</artifactId>
22-
<version>1.3.0-SNAPSHOT</version>
22+
<version>1.4.0-SNAPSHOT</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.dxworks.inspectorgit</groupId>
2626
<artifactId>gitclient</artifactId>
27-
<version>1.3.0-SNAPSHOT</version>
27+
<version>1.4.0-SNAPSHOT</version>
2828
</dependency>
2929

3030
<dependency>

gitclient/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>inspectorgit</artifactId>
77
<groupId>org.dxworks.inspectorgit</groupId>
8-
<version>1.3.0-SNAPSHOT</version>
8+
<version>1.4.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>org.dxworks.inspectorgit</groupId>
2424
<artifactId>utils</artifactId>
25-
<version>1.3.0-SNAPSHOT</version>
25+
<version>1.4.0-SNAPSHOT</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>net.lingala.zip4j</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>org.dxworks.inspectorgit</groupId>
88
<artifactId>inspectorgit</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.3.0-SNAPSHOT</version>
10+
<version>1.4.0-SNAPSHOT</version>
1111
<modules>
1212
<module>gitclient</module>
1313
<module>core</module>

utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>inspectorgit</artifactId>
88
<groupId>org.dxworks.inspectorgit</groupId>
9-
<version>1.3.0-SNAPSHOT</version>
9+
<version>1.4.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>utils</artifactId>
1212

0 commit comments

Comments
 (0)