From 400095f070cbfcec0489fcfe47bd74ff109af52c Mon Sep 17 00:00:00 2001 From: Neil Grogan Date: Tue, 21 Oct 2025 16:29:42 +0100 Subject: [PATCH 1/2] Added SECURITY.md - how to report vulns. (#50) Added SECURITY.md following examples of other Ericsson repositories on Github. Co-authored-by: Neil Grogan --- SECURITY.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..ed28bfb --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,17 @@ +# Security Policy + +## Supported Versions + +Only the latest release version of _python-sample-app_ is supported by security +updates. + +| Version | Supported | +| ---------------- | ------------------ | +| Latest Release | :white_check_mark: | +| Earlier Releases | :x: | + +## Reporting a Vulnerability + +If you find a vulnerability in _python-sample-app_, please report it as a security +vulnerability on GitHub: + From 560c6691eb112aa580eb868aa28fae8ee388ca99 Mon Sep 17 00:00:00 2001 From: Kara Date: Tue, 21 Oct 2025 16:58:23 +0100 Subject: [PATCH 2/2] Updated Github Actions to run on staging branches --- .github/workflows/python-app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index d2c9b20..15e739a 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -2,9 +2,9 @@ name: Pylint and Pytest on: push: - branches: [ "main", "mtls-staging" ] + branches: [ "main", "*-staging" ] pull_request: - branches: [ "main", "mtls-staging" ] + branches: [ "main", "*-staging" ] permissions: contents: read