Skip to content

Commit

Permalink
dependencies: update the dependencies lock file
Browse files Browse the repository at this point in the history
* Fixes security warnings.

Co-Authored-by: Peter Weber <[email protected]>
  • Loading branch information
rerowep and rerowep committed Jan 11, 2022
1 parent 19c37a0 commit f165dfe
Show file tree
Hide file tree
Showing 7 changed files with 1,217 additions and 796 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/continuous-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,31 @@ jobs:
- uses: actions/checkout@v2

- name: Setup node
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: '12'

- name: Docker compose up
run: docker-compose up -d

- name: Set up Python 3.6
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.9

- name: Install Poetry
uses: snok/[email protected]
with:
version: 1.0.10

- name: Use Cache
uses: actions/cache@v2
with:
path: |
~/.cache/pip
~/.cache/pypoetry/virtualenvs
~/.npm
key: ${{ runner.os }}-pip-venv-${{ hashFiles('**/poetry.lock') }}
# - name: Use Cache
# uses: actions/cache@v2
# with:
# path: |
# ~/.cache/pip
# ~/.cache/pypoetry/virtualenvs
# ~/.npm
# key: ${{ runner.os }}-pip-venv-${{ hashFiles('**/poetry.lock') }}

- name: Bootstrap dev
if: ${{ matrix.dependencies == 'dev' }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

FROM python:3.6-slim-stretch
FROM python:3.9-slim-buster

# require debian packages
RUN apt-get update -y && apt-get upgrade -y
Expand Down
2 changes: 1 addition & 1 deletion docker-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
- "15672:15672"
- "5672:5672"
es:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.1
image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.10.2
restart: "always"
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
Expand Down
Loading

0 comments on commit f165dfe

Please sign in to comment.