Skip to content

Commit ec696a7

Browse files
Merge pull request #556 from cordada/deploy/v0.23.4
Deploy release v0.23.4
2 parents 607a304 + 1bb4d9b commit ec696a7

24 files changed

+1196
-906
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.23.3
2+
current_version = 0.23.4
33
commit = True
44
tag = False
55
message = chore: Bump version from {current_version} to {new_version}

.github/workflows/ci-cd.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ on:
1616
permissions:
1717
contents: write
1818

19+
concurrency:
20+
group: ${{ github.workflow }}-${{ github.ref }}
21+
cancel-in-progress: true
22+
1923
env:
2024
PRODUCTION_VCS_REF: refs/heads/master
2125
STAGING_VCS_REF: refs/heads/develop
@@ -42,6 +46,7 @@ jobs:
4246
- workflow_config
4347

4448
uses: ./.github/workflows/ci.yaml
49+
secrets: inherit
4550

4651
# -----END CI Job-----
4752

.github/workflows/ci.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Check Out VCS Repository
37-
uses: actions/checkout@v3.6.0
37+
uses: actions/checkout@v4.1.0
3838

3939
- name: Set Up Python ${{ matrix.python_version }}
4040
uses: actions/[email protected]
@@ -45,7 +45,7 @@ jobs:
4545
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4646

4747
- name: Restoring/Saving Cache
48-
uses: actions/[email protected].1
48+
uses: actions/[email protected].2
4949
with:
5050
path: "venv"
5151
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -75,18 +75,19 @@ jobs:
7575

7676
steps:
7777
- name: Check Out VCS Repository
78-
uses: actions/checkout@v3.6.0
78+
uses: actions/checkout@v4.1.0
7979

8080
- name: Set Up Python ${{ matrix.python_version }}
8181
uses: actions/[email protected]
8282
with:
8383
python-version: "${{ matrix.python_version }}"
8484

8585
- name: Restoring/Saving Cache
86-
uses: actions/[email protected].1
86+
uses: actions/[email protected].2
8787
with:
8888
path: "venv"
8989
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
90+
fail-on-cache-miss: true
9091

9192
- name: Set Tox Environment
9293
id: set_tox_environment
@@ -136,7 +137,7 @@ jobs:
136137
137138
- name: Store Artifacts
138139
if: ${{ always() }}
139-
uses: actions/[email protected].2
140+
uses: actions/[email protected].3
140141
with:
141142
name: test_reports_${{ matrix.python_version }}
142143
path: test-reports/

.github/workflows/dependency-review.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,20 @@ on:
1010
permissions:
1111
contents: read
1212

13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
1317
jobs:
1418
dependency-review:
1519
name: Dependency Review
1620
runs-on: ubuntu-22.04
1721

1822
steps:
1923
- name: Check Out VCS Repository
20-
uses: actions/checkout@v3.6.0
24+
uses: actions/checkout@v4.1.0
2125

2226
- name: Dependency Review
23-
uses: actions/dependency-review-action@v3.0.8
27+
uses: actions/dependency-review-action@v3.1.0
2428
with:
2529
fail-on-severity: critical

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Check Out VCS Repository
41-
uses: actions/checkout@v3.6.0
41+
uses: actions/checkout@v4.1.0
4242

4343
- name: Set Up Python
4444
id: set_up_python
@@ -47,7 +47,7 @@ jobs:
4747
python-version: "3.10.9"
4848

4949
- name: Restoring/Saving Cache
50-
uses: actions/[email protected].1
50+
uses: actions/[email protected].2
5151
with:
5252
path: "venv"
5353
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}

.github/workflows/git-commit-lint.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ on:
1212
permissions:
1313
contents: read
1414

15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: true
18+
1519
jobs:
1620
git-commit-lint:
1721
name: Git Commit Linter

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Check Out VCS Repository
38-
uses: actions/checkout@v3.6.0
38+
uses: actions/checkout@v4.1.0
3939

4040
- name: Set Up Python
4141
id: set_up_python
@@ -47,7 +47,7 @@ jobs:
4747
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4848

4949
- name: Restoring/Saving Cache
50-
uses: actions/[email protected].1
50+
uses: actions/[email protected].2
5151
with:
5252
path: "venv"
5353
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -68,7 +68,7 @@ jobs:
6868
make dist
6969
7070
- name: Store Artifacts
71-
uses: actions/[email protected].2
71+
uses: actions/[email protected].3
7272
with:
7373
name: release
7474
path: ${{ env.ARTIFACTS_PATH }}/

.github/workflows/super-linter.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ permissions:
2424
statuses: write
2525
checks: write
2626

27+
concurrency:
28+
group: ${{ github.workflow }}-${{ github.ref }}
29+
cancel-in-progress: true
30+
2731
jobs:
2832
super-linter:
2933
name: Super-Linter

HISTORY.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# History
22

3+
## 0.23.4 (2023-10-23)
4+
5+
- (PR #547, 2023-10-02) chore: Bump pydantic from 2.3.0 to 2.4.2
6+
- (PR #544, 2023-10-23) Migrate to `pydantic==2.4.2`
7+
- (PR #545, 2023-10-23) chore: Bump the production-dependencies group with 4 updates
8+
- (PR #549, 2023-10-23) chore: Bump the development-dependencies group with 5 updates
9+
- (PR #553, 2023-10-23) Improve CI/CD workflows
10+
- (PR #554, 2023-10-23) Enable GHA secrets inheritance so that Codecov token can be passed
11+
- (PR #543, 2023-10-23) chore: Bump cryptography from 41.0.3 to 41.0.4
12+
- (PR #551, 2023-10-23) chore: Bump urllib3 from 1.26.12 to 1.26.18
13+
314
## 0.23.3 (2023-09-14)
415

516
- (PR #530, 2023-09-05) chore: Bump the development-dependencies group with 9 updates

requirements-dev.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
-c requirements.txt
66

7-
black==23.7.0
7+
black==23.9.1
88
bumpversion==0.5.3
9-
coverage==7.3.0
9+
coverage==7.3.2
1010
flake8==6.1.0
1111
isort==5.12.0
1212
mypy==1.5.1
13-
tox==4.8.0
13+
tox==4.11.3
1414
twine==4.0.2
15-
types-jsonschema==4.17.0.10
15+
types-jsonschema==4.19.0.3
1616
types-pyOpenSSL==23.2.0.2
17-
types-pytz==2023.3.0.1
17+
types-pytz==2023.3.1.1
1818
wheel==0.41.2

0 commit comments

Comments
 (0)