Bump Cloudbeat version #74
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: Bump Cloudbeat version | |
on: | |
workflow_dispatch: | |
env: | |
GITHUB_TOKEN: ${{ secrets.CLOUDSEC_MACHINE_TOKEN }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.CSPM_CFT_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.CSPM_CFT_SECRET_ACCESS_KEY }} | |
SNYK_ORG_ID: ${{ secrets.SNYK_ORG_ID }} | |
SNYK_API_KEY: ${{ secrets.SNYK_API_KEY }} | |
SNYK_INTEGRATION_ID: ${{ secrets.SNYK_INTEGRATION_ID }} | |
jobs: | |
bump_version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Cloudbeat Repo | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.CLOUDSEC_MACHINE_TOKEN }} | |
- name: Setup Cloudbeat Versions | |
run: | | |
current=$(grep defaultBeatVersion version/version.go | cut -f2 -d "\"") | |
IFS='.' read -r major minor patch <<< "$current" | |
minor=$((minor+1)) | |
next="$major.$minor.$patch" | |
echo "current: $current" | |
echo "next: $next" | |
echo "CURRENT_CLOUDBEAT_VERSION=$current" >> $GITHUB_ENV | |
echo "NEXT_CLOUDBEAT_VERSION=$next" >> $GITHUB_ENV | |
- name: Setup Git User | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Cloud Security Machine" | |
- name: Bump Cloudbeat | |
# bump_cloudbeat.sh will create multiple PRs with different HEAD branches | |
run: scripts/bump_cloudbeat.sh | |
- name: Bump Cloud Security Posture Integration | |
# we need to run bump_integration.sh from the main branch | |
run: git checkout origin/main && scripts/bump_integration.sh |