Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# semantic-release is also run to create a new release (if
# warranted by the new commits being built).

name: Build/Test
name: build

on:
push:
Expand All @@ -16,7 +16,7 @@ on:
jobs:
detect-secrets:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: Detect-Secrets
name: detect-secrets
runs-on: ubuntu-latest

steps:
Expand All @@ -38,8 +38,8 @@ jobs:
detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline

build:
name: build-test (java ${{matrix.java-version}})
needs: detect-secrets
name: Build/Test (Java ${{matrix.java-version}})
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -61,7 +61,7 @@ jobs:

create-release:
needs: build
name: Semantic-Release
name: semantic-release
if: "github.ref_name == 'main' && github.event_name != 'pull_request'"
runs-on: ubuntu-latest

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# - building and publishing javadocs to the git repository.
# It is triggered when a new release is created.

name: Publish
name: publish

on:
release:
Expand All @@ -12,8 +12,8 @@ on:
# Allow this workflow to be triggered manually

jobs:
publish:
name: Publish Release
publish-release:
name: publish-release
runs-on: ubuntu-latest

steps:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
-->

<!-- This is the version associated with the Java core. -->
<sdk-core-version>9.23.1</sdk-core-version>
<sdk-core-version>9.24.1</sdk-core-version>

<testng-version>7.11.0</testng-version>
<okhttp3-version>4.12.0</okhttp3-version>
Expand All @@ -35,7 +35,7 @@
<maven-javadoc-plugin-version>3.6.0</maven-javadoc-plugin-version>
<maven-site-plugin-version>4.0.0-M9</maven-site-plugin-version>
<maven-checkstyle-plugin-version>3.3.0</maven-checkstyle-plugin-version>
<checkstyle-version>10.23.0</checkstyle-version>
<checkstyle-version>10.24.0</checkstyle-version>
<maven-reports-plugin-version>3.4.5</maven-reports-plugin-version>
<maven-failsafe-plugin-version>3.1.2</maven-failsafe-plugin-version>
<maven-buildnumber-plugin-version>3.2.0</maven-buildnumber-plugin-version>
Expand Down