Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
check_formatting:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v5
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/prerelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,28 +54,28 @@ jobs:
cp -L $(bazel cquery --output=files :jazzer_release) jazzer-${{ matrix.name }}.tar.gz

- name: Upload jazzer.jar
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: jazzer_tmp_${{ matrix.name }}
path: jazzer-${{ matrix.name }}.jar
if-no-files-found: error

- name: Upload release archive
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: jazzer_releases_${{ matrix.name }}
path: jazzer-${{ matrix.name }}.tar.gz
if-no-files-found: error

merge_jars:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build_release

steps:
- uses: actions/checkout@v5

- name: Download individual jars
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: jazzer_tmp_*
merge-multiple: true
Expand All @@ -88,14 +88,14 @@ jobs:
$(find "$(pwd)/_tmp/" -name '*.jar' -printf "--sources %h/%f ")

- name: Upload merged jar
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: jazzer
path: _tmp/jazzer.jar
if-no-files-found: error

maven_predeploy:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: merge_jars

environment:
Expand All @@ -119,7 +119,7 @@ jobs:
echo "build --//deploy:jazzer_version=${TAG#v}" >> .bazelrc

- name: Download merged jar
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: jazzer
path: _tmp/
Expand All @@ -133,7 +133,7 @@ jobs:
run: JAZZER_JAR_PATH="$(pwd)/_tmp/jazzer.jar" bazel run deploy

- name: Upload Jazzer Bundle to Github Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: jazzer-maven-central-bundle
path: _tmp/release
Expand All @@ -151,7 +151,7 @@ jobs:
uses: actions/checkout@v5

- name: Download individual tar.gzs
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: jazzer_releases_*
merge-multiple: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:

generate_docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: checkout
Expand All @@ -23,7 +23,7 @@ jobs:
cp $(bazel cquery --output=files //deploy:jazzer-junit-docs) ./jazzer-junit-docs.jar

- name: Upload jars
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: jazzer_docs_jars
path: |
Expand All @@ -33,7 +33,7 @@ jobs:
if-no-files-found: error

update_docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: generate_docs

environment:
Expand All @@ -47,7 +47,7 @@ jobs:
ssh-key: "${{ secrets.JAZZER_DOCS_SSH_KEY_PRIVATE }}"

- name: Download jar
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: jazzer_docs_jars
path: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-all-tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Upload test logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: testlogs-${{ matrix.arch }}-${{ matrix.jdk }}
# https://github.com/actions/upload-artifact/issues/92#issuecomment-711107236
Expand Down
6 changes: 3 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ module(name = "jazzer")
################################################################################

bazel_dep(name = "abseil-cpp", version = "20250814.1")
bazel_dep(name = "apple_support", version = "1.24.1")
bazel_dep(name = "apple_support", version = "1.24.3")
bazel_dep(name = "bazel_jar_jar", version = "0.1.11")
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2")

# TODO: Starting with version 0.28.0 the JUnit test runner is compiled for Java 11 which breaks our JDK 8 tests.
# https://github.com/bazel-contrib/rules_jvm/pull/307
bazel_dep(name = "contrib_rules_jvm", version = "0.27.0")
bazel_dep(name = "contrib_rules_jvm", version = "0.30.0")
bazel_dep(name = "googletest", version = "1.17.0.bcr.1")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "protobuf", version = "33.0")
Expand All @@ -27,7 +27,7 @@ bazel_dep(name = "rules_jvm_external", version = "6.8")
bazel_dep(name = "rules_kotlin", version = "2.1.9")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "rules_pkg", version = "1.1.0")
bazel_dep(name = "rules_cc", version = "0.2.12")
bazel_dep(name = "rules_cc", version = "0.2.13")
bazel_dep(name = "toolchains_llvm", version = "1.5.0")

################################################################################
Expand Down
18 changes: 9 additions & 9 deletions selffuzz/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,31 +58,31 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.2</version>
<version>6.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.2</version>
<version>6.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.10.2</version>
<version>6.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>1.10.2</version>
<version>6.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.10.2</version>
<version>6.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -131,7 +131,7 @@
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.4.0</version>
<version>1.4.5</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java
Expand All @@ -140,7 +140,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.25.5</version>
<version>4.33.0</version>
</dependency>
</dependencies>

Expand All @@ -149,14 +149,14 @@
<extension>
<groupId>com.code-intelligence</groupId>
<artifactId>cifuzz-maven-extension</artifactId>
<version>1.7.0</version>
<version>1.15.0</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<version>0.8.14</version>
<executions>
<execution>
<goals>
Expand Down
Loading