Skip to content

Commit 7a3be55

Browse files
committed
Update maven site and deps
1 parent 24a878b commit 7a3be55

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

.github/workflows/robot.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ on:
88
pull_request:
99
branches:
1010
- master
11-
name: Robot builder
11+
12+
permissions:
13+
contents: write
14+
15+
name: Build robot
16+
1217
jobs:
1318
build:
1419
runs-on: ubuntu-24.04
@@ -24,7 +29,7 @@ jobs:
2429
fetch-depth: 0 # To make git describe give the intended output
2530
fetch-tags: true
2631
- name: Setup java
27-
uses: actions/setup-java@v4.5.0
32+
uses: actions/setup-java@v4.7.0
2833
with:
2934
java-version: ${{ matrix.java }}
3035
distribution: temurin
@@ -36,7 +41,7 @@ jobs:
3641
ssh-private-key: ${{ secrets.SSH_KEY }}
3742
- name: Add host key
3843
if: github.event_name != 'pull_request'
39-
run: ssh-keyscan javacard.pro >> ~/.ssh/known_hosts
44+
run: ssh-keyscan mvn.javacard.pro >> ~/.ssh/known_hosts
4045
- name: Run Maven for capfile
4146
if: matrix.java != 8
4247
run: ./mvnw -T1C -B -U verify
@@ -56,7 +61,7 @@ jobs:
5661
- name: Release
5762
if: startsWith(github.ref, 'refs/tags/v') && matrix.java == '11'
5863
id: create_release
59-
uses: softprops/action-gh-release@v2.1.0
64+
uses: softprops/action-gh-release@v2.2.1
6065
with:
6166
files: |
6267
ant-javacard.jar

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Have a consistent and concise build declaration for JavaCard applets, no matter which JavaCard SDK version you use or target.
66

77
[![Latest release](https://img.shields.io/github/release/martinpaljak/ant-javacard.svg)](https://github.com/martinpaljak/ant-javacard/releases/latest)
8-
 [![Maven version](https://img.shields.io/maven-metadata/v?label=mvn.javacard.pro&metadataUrl=https%3A%2F%2Fjavacard.pro%2Fmaven%2Fcom%2Fgithub%2Fmartinpaljak%2Fant-javacard%2Fmaven-metadata.xml)](https://gist.github.com/martinpaljak/c77d11d671260e24eef6c39123345cae)
8+
 [![Maven version](https://img.shields.io/maven-metadata/v?label=mvn.javacard.pro&metadataUrl=https%3A%2F%2Fmvn.javacard.pro%2Fmaven%2Fcom%2Fgithub%2Fmartinpaljak%2Fant-javacard%2Fmaven-metadata.xml)](https://gist.github.com/martinpaljak/c77d11d671260e24eef6c39123345cae)
99
 [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/martinpaljak/ant-javacard/blob/master/LICENSE)
10-
 [![Build Status](https://github.com/martinpaljak/ant-javacard/workflows/Robot%20builder/badge.svg)](https://github.com/martinpaljak/ant-javacard/actions)
10+
 [![Build Status](https://github.com/martinpaljak/ant-javacard/workflows/robot.yml/badge.svg?branch=master)](https://github.com/martinpaljak/ant-javacard/actions)
1111
 [![Made in Estonia](https://img.shields.io/badge/Made_in-Estonia-0072CE)](https://estonia.ee)
1212

1313
## Features

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
<distributionManagement>
3232
<repository>
3333
<id>javacard</id>
34-
<url>scpexe://mvn@javacard.pro/home/mvn/maven/</url>
34+
<url>scpexe://mvn@mvn.javacard.pro/home/mvn/maven/</url>
3535
</repository>
3636
<snapshotRepository>
3737
<id>javacard</id>
38-
<url>scpexe://mvn@javacard.pro/home/mvn/maven/SNAPSHOTS</url>
38+
<url>scpexe://mvn@mvn.javacard.pro/home/mvn/maven/SNAPSHOTS</url>
3939
</snapshotRepository>
4040
</distributionManagement>
4141
<modules>
@@ -97,7 +97,7 @@
9797
<plugin>
9898
<groupId>org.apache.maven.plugins</groupId>
9999
<artifactId>maven-compiler-plugin</artifactId>
100-
<version>3.13.0</version>
100+
<version>3.14.0</version>
101101
<executions>
102102
<execution>
103103
<id>default-compile</id>
@@ -141,7 +141,7 @@
141141
<plugin>
142142
<groupId>com.github.spotbugs</groupId>
143143
<artifactId>spotbugs-maven-plugin</artifactId>
144-
<version>4.8.6.6</version>
144+
<version>4.9.2.0</version>
145145
<configuration>
146146
<excludeFilterFile>spotbugs.xml</excludeFilterFile>
147147
</configuration>
@@ -158,17 +158,17 @@
158158
<plugin>
159159
<groupId>org.apache.maven.plugins</groupId>
160160
<artifactId>maven-clean-plugin</artifactId>
161-
<version>3.4.0</version>
161+
<version>3.4.1</version>
162162
</plugin>
163163
<plugin>
164164
<groupId>org.apache.maven.plugins</groupId>
165165
<artifactId>maven-install-plugin</artifactId>
166-
<version>3.1.3</version>
166+
<version>3.1.4</version>
167167
</plugin>
168168
<plugin>
169169
<groupId>org.apache.maven.plugins</groupId>
170170
<artifactId>maven-deploy-plugin</artifactId>
171-
<version>3.1.3</version>
171+
<version>3.1.4</version>
172172
</plugin>
173173
<plugin>
174174
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)