Skip to content

Bump pydantic from 2.12.5 to 2.13.1 in /docker/commvault #42724

Bump pydantic from 2.12.5 to 2.13.1 in /docker/commvault

Bump pydantic from 2.12.5 to 2.13.1 in /docker/commvault #42724

name: Update verify script
on:
pull_request:
branches:
- master
jobs:
update_verify_script:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]' && !contains(github.event.pull_request.title, 'autoupdate') && !contains(github.head_ref, 'autolock') && 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@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Run update_verify_script Script.
env:
CHANGED_FILES: "${{ steps.changed-files.outputs.all_changed_files }}"
run: |
echo "==== $(date): Starting environment setup... ===="
python -m pip install --upgrade pip
pwd
cd "$GITHUB_WORKSPACE/.github/workflows/update-verify-script"
echo "==== $(date): Running validator... ===="
python ./update_verify_script.py -c "$CHANGED_FILES"