Skip to content

Commit

Permalink
Merge pull request #14 from Ostorlab/Update-from-python3.10-to-3.11-
Browse files Browse the repository at this point in the history
Update from python3.10 to 3.11
  • Loading branch information
elyousfi5 authored Nov 1, 2023
2 parents 2b7c537 + 5846080 commit ff1fcd1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-alpine as base
FROM python:3.11-alpine as base
FROM base as builder
RUN apk add build-base
RUN mkdir /install
Expand All @@ -13,4 +13,4 @@ ENV PYTHONPATH=/app
COPY agent /app/agent
COPY ostorlab.yaml /app/agent/ostorlab.yaml
WORKDIR /app
CMD ["python3", "/app/agent/semgrep_agent.py"]
CMD ["python3.11", "/app/agent/semgrep_agent.py"]
2 changes: 1 addition & 1 deletion ostorlab.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
kind: Agent
name: semgrep
version: 0.2.4
version: 0.2.5
description: |
This repository is an implementation of [Ostorlab Agent](https://pypi.org/project/ostorlab/) for [Semgrep](https://github.com/returntocorp/semgrep) by r2c.
## Getting Started
Expand Down

0 comments on commit ff1fcd1

Please sign in to comment.