Skip to content

Commit cb294fb

Browse files
authored
Fix python publish/deploy GH action (#132)
* Fix python publish/deploy GH action * Add Sam Smith to CODEOWNERS
1 parent afb62aa commit cb294fb

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These owners will be the default owners for everything in
22
# the repo.
3-
* @alfinkel @drsm79 @cletomartin @mattwhite
3+
* @alfinkel @drsm79 @cletomartin @mattwhite @smithsz

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: '3.x'
20+
python-version: '3.7'
2121
- name: Install dependencies
2222
run: |
2323
make develop

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [1.22.1](https://github.com/ComplianceAsCode/auditree-framework/releases/tag/v1.22.1)
2+
3+
- [FIXED] Set Python version to 3.7 in publish/deploy GH action to match other actions.
4+
15
# [1.22.0](https://github.com/ComplianceAsCode/auditree-framework/releases/tag/v1.22.0)
26

37
- [ADDED] Agent mode for storing cryptographically signed evidence.

compliance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
"""Compliance automation package."""
1616

17-
__version__ = '1.22.0'
17+
__version__ = '1.22.1'

0 commit comments

Comments
 (0)