From 4ee734eb8c9bdaab46f378ef8977c9d7e9e94954 Mon Sep 17 00:00:00 2001 From: AnathaedraxD <115761473+AnathaedraxD@users.noreply.github.com> Date: Fri, 28 Oct 2022 02:04:21 -0500 Subject: [PATCH 1/3] Create SECURITY.md (#1) Arm64 --- SECURITY | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SECURITY diff --git a/SECURITY b/SECURITY new file mode 100644 index 00000000..034e8480 --- /dev/null +++ b/SECURITY @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. From 8f0ad0c8492596fb9ccb8deda9f7b13c4706e604 Mon Sep 17 00:00:00 2001 From: AnathaedraxD <115761473+AnathaedraxD@users.noreply.github.com> Date: Fri, 28 Oct 2022 02:05:31 -0500 Subject: [PATCH 2/3] Create docker-image.yml --- .github/workflows/docker-image.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 00000000..eac633f6 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) From 098a8483a12fccc310174612cb62dfd5d3766d0f Mon Sep 17 00:00:00 2001 From: AnathaedraxD <115761473+AnathaedraxD@users.noreply.github.com> Date: Fri, 28 Oct 2022 04:19:10 -0500 Subject: [PATCH 3/3] Revert "Create SECURITY.md (#1)" This reverts commit 4ee734eb8c9bdaab46f378ef8977c9d7e9e94954. --- SECURITY | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 SECURITY diff --git a/SECURITY b/SECURITY deleted file mode 100644 index 034e8480..00000000 --- a/SECURITY +++ /dev/null @@ -1,21 +0,0 @@ -# Security Policy - -## Supported Versions - -Use this section to tell people about which versions of your project are -currently being supported with security updates. - -| Version | Supported | -| ------- | ------------------ | -| 5.1.x | :white_check_mark: | -| 5.0.x | :x: | -| 4.0.x | :white_check_mark: | -| < 4.0 | :x: | - -## Reporting a Vulnerability - -Use this section to tell people how to report a vulnerability. - -Tell them where to go, how often they can expect to get an update on a -reported vulnerability, what to expect if the vulnerability is accepted or -declined, etc.