Skip to content

Commit

Permalink
sign maven artifacts with sigstore
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Dec 24, 2024
1 parent 88d58ca commit ddd1210
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ jobs:
github.event_name == 'push'
&& github.event.repository.fork == false
&& endsWith(github.ref, github.event.repository.default_branch)
permissions:
id-token: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
Expand All @@ -348,6 +350,7 @@ jobs:
guava.dev:443
jspecify.dev:443
lightbend.github.io:443
oauth2.sigstore.dev:443
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Publish Snapshot
uses: ./.github/actions/run-gradle
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
release:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
permissions:
id-token: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
api.github.com:443
ghcr.io:443
github.com:443
mirror.gcr.io:443
objects.githubusercontent.com:443
pkg-containers.githubusercontent.com:443
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ protobuf = "4.29.2"
slf4j = "2.0.16"
slf4j-test = "3.0.1"
snakeyaml = "2.3"
sigstore = "1.2.0"
sonarqube = "6.0.1.5171"
spotbugs = "4.8.6"
spotbugs-contrib = "7.6.9"
Expand Down Expand Up @@ -237,6 +238,7 @@ jmh-report = { id = "io.morethan.jmhreport", version.ref = "jmh-report" }
jvm-dependency-conflict-resolution = { id = "org.gradlex.jvm-dependency-conflict-resolution", version.ref = "jvm-dependency-conflict-resolution" }
nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version.ref = "nexus-publish" }
nullaway = { id = "net.ltgt.nullaway", version.ref = "nullaway-plugin" }
sigstore = { id = "dev.sigstore.sign", version.ref = "sigstore" }
sonarqube = { id = "org.sonarqube", version.ref = "sonarqube" }
spotbugs = { id = "com.github.spotbugs", version.ref = "spotbugs-plugin" }
versions = { id = "com.github.ben-manes.versions", version.ref = "versions" }
1 change: 1 addition & 0 deletions gradle/plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies {
implementation(plugin(libs.plugins.bnd))
implementation(plugin(libs.plugins.idea))
implementation(plugin(libs.plugins.nullaway))
implementation(plugin(libs.plugins.sigstore))
implementation(plugin(libs.plugins.spotbugs))
implementation(plugin(libs.plugins.versions))
implementation(plugin(libs.plugins.sonarqube))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
plugins {
id("dev.sigstore.sign")
`maven-publish`
`java-library`
signing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,11 @@ private void demote() {
// nL = nL − 1

policyStats.recordEviction();
requireNonNull(headT2.next);

while (requireNonNull(headT2.next).marked) {
while (headT2.next.marked) {
policyStats.recordOperation();
Node demoted = headT2.next;
Node demoted = requireNonNull(headT2.next);
demoted.marked = false;
demoted.remove();
sizeT2--;
Expand All @@ -257,10 +258,10 @@ private void demote() {
}
}

while ((requireNonNull(headT1.next).filter == FilterType.LONG_TERM)
|| requireNonNull(headT1.next).marked) {
requireNonNull(headT1.next);
while ((headT1.next.filter == FilterType.LONG_TERM) || headT1.next.marked) {
policyStats.recordOperation();
Node node = headT1.next;
Node node = requireNonNull(headT1.next);
if (node.marked) {
node.moveToTail(headT1);
node.marked = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public void record(long key) {
policyStats.recordOperation();
@Var Node node = data.get(key);
if (node != null) {
switch (requireNonNull(node.type)) {
requireNonNull(node.type);
switch (node.type) {
case MAIN:
node.moveToTail(headMain);
policyStats.recordHit();
Expand Down

0 comments on commit ddd1210

Please sign in to comment.