Skip to content

Commit bdf8def

Browse files
authored
chore: update to latest BC version (#135)
1 parent 3d09996 commit bdf8def

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
29-
- name: Set up JDK
29+
- name: Set up JDK 11
3030
uses: actions/setup-java@v4
3131
with:
3232
distribution: 'zulu'
@@ -37,6 +37,11 @@ jobs:
3737
./mvnw --no-transfer-progress tidy:check
3838
- name: Build
3939
run: ./mvnw --no-transfer-progress clean install
40+
- name: Set up JDK 17
41+
uses: actions/setup-java@v4
42+
with:
43+
distribution: 'zulu'
44+
java-version: '17'
4045
- name: SonarCloud Scan
4146
if: ${{ github.actor != 'dependabot[bot]' }}
4247
run: ./mvnw --no-transfer-progress org.sonarsource.scanner.maven:sonar-maven-plugin:3.9.1.2184:sonar -Dsonar.login=${{ secrets.SONAR_TOKEN }} -Dsonar.projectKey=nbaars_paseto4j -Dsonar.cpd.exclusions=version1/src/main/java/org/paseto4j/version1/CryptoFunctions.java

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 - 2023, Nanne Baars
3+
Copyright (c) 2018 - 2024, Nanne Baars
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

commons/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 - 2023, Nanne Baars
3+
Copyright (c) 2018 - 2024, Nanne Baars
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

examples/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 - 2023, Nanne Baars
3+
Copyright (c) 2018 - 2024, Nanne Baars
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@
9090
</dependency>
9191
<dependency>
9292
<groupId>org.bouncycastle</groupId>
93-
<artifactId>bcpkix-jdk15on</artifactId>
94-
<version>1.70</version>
93+
<artifactId>bcpkix-jdk18on</artifactId>
94+
<version>1.77</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>org.bouncycastle</groupId>
98-
<artifactId>bcprov-jdk15on</artifactId>
99-
<version>1.70</version>
98+
<artifactId>bcprov-jdk18on</artifactId>
99+
<version>1.77</version>
100100
</dependency>
101101
</dependencies>
102102
</dependencyManagement>

version1/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 - 2023, Nanne Baars
3+
Copyright (c) 2018 - 2024, Nanne Baars
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

version2/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 - 2023, Nanne Baars
3+
Copyright (c) 2018 - 2024, Nanne Baars
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

version3/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 - 2023, Nanne Baars
3+
Copyright (c) 2018 - 2024, Nanne Baars
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)