build #600
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
repository_dispatch: | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
bump-version: | |
runs-on: [self-hosted, public, linux, x64] | |
environment: release | |
permissions: | |
contents: write | |
# IMPORTANT: this permission is mandatory for trusted publishing to pypi | |
id-token: write | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v3 | |
with: | |
fetch-depth: '0' | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4 | |
with: | |
python-version: 3.7 | |
- name: update-checkov-version | |
id: checkov_version | |
run: | | |
version=$(curl -s curl -s https://api.github.com/repos/bridgecrewio/checkov/tags | jq -r '.[0].name') | |
echo "new version: $version" | |
## update python version | |
echo "version = '$version'" > 'bridgecrew/version.py' | |
# grab major version for later image tag usage | |
major_version=$(echo "${version}" | head -c1) | |
echo "major_version=$major_version" >> "$GITHUB_OUTPUT" | |
echo "version=$version" >> $GITHUB_OUTPUT | |
- uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5 | |
id: git_auto_commit | |
with: | |
commit_message: Bump checkov version to ${{ steps.checkov_version.outputs.version }} | |
- name: version-tag | |
uses: anothrNick/github-tag-action@a2c70ae13a881faf2b4953baaa9e49731997ab36 # v1 | |
if: steps.git_auto_commit.outputs.changes_detected == 'true' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CUSTOM_TAG: ${{ steps.checkov_version.outputs.version }} | |
- name: create python package | |
run: | | |
python -m pip install wheel | |
python setup.py sdist bdist_wheel | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@b7f401de30cb6434a1e19f805ff006643653240e # v1 | |
- name: sleep and wait for package to refresh | |
run: | | |
sleep 5m | |
outputs: | |
version: ${{ steps.checkov_version.outputs.version }} | |
major_version: ${{ steps.checkov_version.outputs.major_version }} | |
publish-dockerhub: | |
runs-on: [self-hosted, public, linux, x64] | |
needs: bump-version | |
environment: release | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v3 | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@43dc228e327224b2eda11c8883232afd5b34943b # v5 | |
with: | |
name: bridgecrew/bridgecrew | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
tags: "latest,${{ needs.bump-version.outputs.version }},${{ needs.bump-version.outputs.major_version }}" | |
dockerfile: Dockerfile | |
buildoptions: "--no-cache" | |
update-dependent-projects: | |
needs: publish-dockerhub | |
runs-on: [self-hosted, public, linux, x64] | |
environment: release | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v3 | |
- name: update projects | |
run: | | |
# trigger checkov-action update | |
curl -XPOST -u "${{ secrets.GH_PAT_USER}}:${{secrets.GH_PAT_SECRET}}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/bridgecrewio/bridgecrew-action/dispatches --data '{"event_type": "build"}' |