Skip to content

Commit c70db11

Browse files
committed
fix(build): bump python core to 3.24.1
Signed-off-by: Phil Adams <[email protected]>
1 parent 1779d87 commit c70db11

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# semantic-release is also run to create a new release (if
44
# warranted by the new commits being built).
55

6-
name: Build/Test
6+
name: build
77

88
on:
99
push:
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
detect-secrets:
1818
if: "!contains(github.event.head_commit.message, '[skip ci]')"
19-
name: Detect-Secrets
19+
name: detect-secrets
2020
runs-on: ubuntu-latest
2121

2222
steps:
@@ -38,8 +38,8 @@ jobs:
3838
detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline
3939
4040
build:
41+
name: build-test (python ${{ matrix.python-version }})
4142
needs: detect-secrets
42-
name: Build/Test (Python ${{ matrix.python-version }})
4343

4444
runs-on: ubuntu-latest
4545
strategy:
@@ -59,9 +59,9 @@ jobs:
5959
run: make ci
6060

6161
create-release:
62-
needs: build
63-
name: Semantic-Release
62+
name: semantic-release
6463
if: "github.ref_name == 'main' && github.event_name != 'pull_request'"
64+
needs: build
6565
runs-on: ubuntu-latest
6666

6767
steps:

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# - building and publishing javadocs to the git repository.
44
# It is triggered when a new release is created.
55

6-
name: Publish
6+
name: publish
77
on:
88
release:
99
types: [created]
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
publish:
15-
name: Publish Release
15+
name: publish-release
1616
runs-on: ubuntu-latest
1717

1818
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
]
2727
keywords=["ibm", "cloud", "ibm cloud services", "ibm cloud platform services"]
2828
dependencies = [
29-
"ibm_cloud_sdk_core>=3.22.1,<4.0.0",
29+
"ibm_cloud_sdk_core>=3.24.1,<4.0.0",
3030
]
3131

3232
[project.urls]

0 commit comments

Comments
 (0)