From 8fc0e9f985fc15000a1bcc3eb728c2b22e298939 Mon Sep 17 00:00:00 2001 From: Phil Adams Date: Fri, 30 May 2025 13:37:01 -0500 Subject: [PATCH] fix(build): bump python core to 3.24.1 Signed-off-by: Phil Adams --- .github/workflows/build.yaml | 10 +++++----- .github/workflows/publish.yaml | 4 ++-- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 957be3b..8b69403 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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: @@ -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: @@ -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 (python ${{ matrix.python-version }}) needs: detect-secrets - name: Build/Test (Python ${{ matrix.python-version }}) runs-on: ubuntu-latest strategy: @@ -59,9 +59,9 @@ jobs: run: make ci create-release: - needs: build - name: Semantic-Release + name: semantic-release if: "github.ref_name == 'main' && github.event_name != 'pull_request'" + needs: build runs-on: ubuntu-latest steps: diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 5d55a5f..a991ea1 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -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: types: [created] @@ -12,7 +12,7 @@ on: jobs: publish: - name: Publish Release + name: publish-release runs-on: ubuntu-latest steps: diff --git a/pyproject.toml b/pyproject.toml index b83637d..bd36e32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ ] keywords=["ibm", "cloud", "ibm cloud services", "ibm cloud platform services"] dependencies = [ - "ibm_cloud_sdk_core>=3.22.1,<4.0.0", + "ibm_cloud_sdk_core>=3.24.1,<4.0.0", ] [project.urls]