From 4ba4911307620c3211a8932652730218841849c8 Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Fri, 22 May 2020 12:52:55 -0700 Subject: [PATCH 1/3] add disclaimer --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4216e158a..34090ddc5 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,9 @@ # FireGuard -Under active development. Check back later. +**Warning**: This project is under active development and is absolutely not secure at the moment. +Do not attempt to use this software until this notice is removed. + +You have been warned. + +Check back later :-). From f863b3aeabc79f12f2171ac78792abb6033ac7e1 Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Fri, 22 May 2020 13:39:56 -0700 Subject: [PATCH 2/3] Github actions stuff --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 97445bd7f..67146401e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: # 1. Unit/Integration Test unit-integration-test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 env: MIX_ENV: test POSTGRES_HOST: localhost @@ -31,8 +31,8 @@ jobs: - name: Run Static Tests uses: actions/setup-elixir@v1 with: - elixir-version: 1.10.2 - otp-version: 22.3.2 + elixir-version: "1.10.3" + otp-version: "23.0" - name: Install Dependencies run: mix deps.get --only test - name: Setup Database @@ -45,7 +45,7 @@ jobs: # 2. Build VM image build-vm: needs: unit-integration-test - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Build VM Image @@ -61,7 +61,7 @@ jobs: # 3. Functional Test functional-test: needs: build-vm - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Functional Test From b0536d48a885814e2c3cb02ff09943046e5df86b Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Fri, 22 May 2020 13:41:28 -0700 Subject: [PATCH 3/3] revert to ubuntu 18.04 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 67146401e..1a73b996d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: # 1. Unit/Integration Test unit-integration-test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 env: MIX_ENV: test POSTGRES_HOST: localhost @@ -45,7 +45,7 @@ jobs: # 2. Build VM image build-vm: needs: unit-integration-test - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Build VM Image @@ -61,7 +61,7 @@ jobs: # 3. Functional Test functional-test: needs: build-vm - runs-on: ubuntu-20.04 + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - name: Functional Test