Skip to content

fix(build): bump python core to 3.24.1 #293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2025
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
10 changes: 5 additions & 5 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 (python ${{ matrix.python-version }})
needs: detect-secrets
name: Build/Test (Python ${{ matrix.python-version }})

runs-on: ubuntu-latest
strategy:
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 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:
types: [created]
Expand All @@ -12,7 +12,7 @@ on:

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

steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down