Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
chore: correct ort (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Faircloth committed Sep 21, 2021
1 parent 5c8f90b commit fbb2378
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 51 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
build:
name: Build Release
needs:
# - lint
# - lint
- test-unit
- review_secrets
- compliance-copyrights
Expand All @@ -168,16 +168,16 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Packages Docker Registry
uses: docker/login-action@v1.9.0
uses: docker/login-action@v1.10.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/${{ github.repository }}
images: ghcr.io/${{ github.repository }}/container
tags: |
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{major}}
Expand Down Expand Up @@ -212,7 +212,6 @@ jobs:
# or you can signup for free at https://snyk.io/login
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:

image: ${{ fromJSON(steps.docker_meta.outputs.json).tags[0] }}
args: --file=Dockerfile
- name: Upload result to GitHub Code Scanning
Expand Down
129 changes: 84 additions & 45 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ authors = ["Your Name <you@example.com>"]
license = "APACHE-2.0"

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.7"
pymongo = "^3.12.0"
pysnmp = "^4.4.12"
requests = "^2.26.0"
Expand Down

0 comments on commit fbb2378

Please sign in to comment.