Skip to content

GitHub Action to Compare Dependencies #7

GitHub Action to Compare Dependencies

GitHub Action to Compare Dependencies #7

name: Compare Dependency Constraints
on:
pull_request:
branches:
- master
jobs:
compare_dependency_constraints_script:
runs-on: ubuntu-latest
if: github.repository == 'demisto/dockerFiles'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies with pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Run compare_dependency_constraints Script.
env:
CHANGED_FILES: "${{ steps.changed-files.outputs.all_changed_files }}"
run: |
echo "==== $(date): Starting environment setup... ===="
cd "$GITHUB_WORKSPACE/utils/"
pipenv install
echo "==== $(date): Running chceking Native dependency ===="
pipenv run ./compare_dependency_constraints.py