Skip to content

Commit d23236d

Browse files
authored
Configurable validity (#12)
* update default port and test server ip * make validity days configurable server side (in days) * update version * update versions for dependencies, add go build for 1.25 * run github actions for all branches * fix yaml
1 parent 284c1d8 commit d23236d

File tree

22 files changed

+2265
-3277
lines changed

22 files changed

+2265
-3277
lines changed

.github/workflows/go-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
- '1.19' #default for debian bookworm
2727
- '1.22'
2828
- '1.23'
29-
- '1.24' #latest for arch
29+
- '1.24'
30+
- '1.25' #latest for arch
3031
defaults:
3132
run:
3233
working-directory: ./${{ inputs.service }}

.github/workflows/go-ssh-signer-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: go-ssh-signer
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ '*' ]
66
paths:
77
- go-ssh-signer/**
88
- .github/workflows/go-ssh-signer-workflow.yml

.github/workflows/ssh-hostkey-signer-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ssh-hostkey-signer
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ '*' ]
66
paths:
77
- ssh-hostkey-signer/**
88
- .github/workflows/ssh-hostkey-signer-workflow.yml

.github/workflows/ssh-key-signer-server-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: create and publish docker container
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ '*' ]
66
paths:
77
- ssh-key-signer-server/**
88
- .github/workflows/ssh-key-signer-server-docker.yml

.github/workflows/ssh-key-signer-server-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ssh-key-signer-server
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ '*' ]
66
paths:
77
- ssh-key-signer-server/**
88
- .github/workflows/ssh-key-signer-server-workflow.yml

.github/workflows/ssh-signer-common-lib-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ssh-signer-common-lib
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ '*' ]
66
paths:
77
- ssh-signer-common-lib/**
88
- .github/workflows/ssh-signer-common-lib-workflow.yml

.github/workflows/ssh-userkey-signer-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ssh-userkey-signer
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ '*' ]
66
paths:
77
- ssh-userkey-signer/**
88
- .github/workflows/ssh-userkey-signer-workflow.yml

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
**/node_modules/
44
**/*ca_key*
55
retry-tag-workflow.sh
6-
6+
src/**

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>io.binarycodes.homelab</groupId>
88
<artifactId>ssh-signer-mono</artifactId>
99
<name>Monorepo - SSH KeySigner</name>
10-
<version>0.0.1</version>
10+
<version>0.0.2</version>
1111

1212
<packaging>pom</packaging>
1313

ssh-hostkey-signer/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66

77
<groupId>io.binarycodes.homelab</groupId>
88
<artifactId>ssh-hostkey-signer</artifactId>
9-
<version>0.0.1</version>
9+
<version>0.0.2</version>
1010

1111
<name>Sign Host Key - SSH Key Signer</name>
1212

1313
<properties>
1414
<maven.compiler.release>21</maven.compiler.release>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<ssh-signer-common-lib.version>0.0.1</ssh-signer-common-lib.version>
16+
<ssh-signer-common-lib.version>0.0.2</ssh-signer-common-lib.version>
1717
</properties>
1818

1919
<parent>
2020
<groupId>org.springframework.boot</groupId>
2121
<artifactId>spring-boot-starter-parent</artifactId>
22-
<version>3.5.0</version>
22+
<version>3.5.5</version>
2323
<relativePath/>
2424
</parent>
2525

0 commit comments

Comments
 (0)