Skip to content

Commit 2bb5666

Browse files
committed
Update deps
1 parent 77049d9 commit 2bb5666

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/robot.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
name: Java ${{ matrix.java }} build
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4.2.0
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0 # To make git describe give the intended output
2323
fetch-tags: true
2424
- name: Setup Java
25-
uses: actions/setup-java@v4.4.0
25+
uses: actions/setup-java@v4
2626
with:
2727
java-version: ${{ matrix.java }}
2828
distribution: temurin
@@ -39,7 +39,7 @@ jobs:
3939
- name: Release
4040
if: startsWith(github.ref, 'refs/tags/v') && matrix.java == '11'
4141
id: create_release
42-
uses: softprops/action-gh-release@v2.0.8
42+
uses: softprops/action-gh-release@v2.2.0
4343
with:
4444
files: |
4545
tool/target/apdu4j.jar

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
# apdu4j · [![Build Status](https://github.com/martinpaljak/apdu4j/workflows/Build%20robot/badge.svg?branch=master)](https://github.com/martinpaljak/apdu4j/actions) [![Maven version](https://img.shields.io/maven-metadata/v?label=javacard.pro%20version&metadataUrl=https%3A%2F%2Fmvn.javacard.pro%2Fmaven%2Fcom%2Fgithub%2Fmartinpaljak%2Fapdu4j-pcsc%2Fmaven-metadata.xml)](https://gist.github.com/martinpaljak/c77d11d671260e24eef6c39123345cae) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/martinpaljak/apdu4j/blob/master/LICENSE)
1+
# apdu4j
22

3+
[![Build Status](https://github.com/martinpaljak/apdu4j/actions/workflows/robot.yml/badge.svg?branch=master)](https://github.com/martinpaljak/apdu4j/actions)
4+
 [![Maven version](https://img.shields.io/maven-metadata/v?label=javacard.pro%20version&metadataUrl=https%3A%2F%2Fmvn.javacard.pro%2Fmaven%2Fcom%2Fgithub%2Fmartinpaljak%2Fapdu4j-pcsc%2Fmaven-metadata.xml)](https://gist.github.com/martinpaljak/c77d11d671260e24eef6c39123345cae)
5+
 [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/martinpaljak/apdu4j/blob/master/LICENSE)
6+
 [![Made in Estonia](https://img.shields.io/badge/Made_in-Estonia-blue)](https://estonia.ee)
37

48
Command line tool and library of useful Java classes for working with smart cards and smart card readers via [JSR268](https://jcp.org/en/jsr/detail?id=268) (commonly known as [javax.smartcardio](https://docs.oracle.com/javase/8/docs/jre/api/security/smartcardio/spec/javax/smartcardio/package-summary.html)). While focus is on desktop PC/SC readers, some code can be re-used with arbitrary "APDU-command-response-ish" interfaces, either as [CommandAPDU](https://docs.oracle.com/javase/8/docs/jre/api/security/smartcardio/spec/javax/smartcardio/CommandAPDU.html)/[ResponseAPDU](https://docs.oracle.com/javase/8/docs/jre/api/security/smartcardio/spec/javax/smartcardio/ResponseAPDU.html) pairs or plain byte arrays.
59

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.martinpaljak</groupId>
77
<artifactId>metacard</artifactId>
8-
<version>24.09.25</version>
8+
<version>24.11.17</version>
99
</parent>
1010
<artifactId>apdu4j</artifactId>
1111
<version>24.09.27-SNAPSHOT</version>

0 commit comments

Comments
 (0)