-
Notifications
You must be signed in to change notification settings - Fork 42
44 lines (36 loc) · 1.27 KB
/
bump-version.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Bump Cloudbeat version
on:
# workflow_dispatch:
pull_request:
branches:
- main
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 }}
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++))
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
# run: scripts/bump_cloudbeat.sh
- name: Bump Cloud Security Posture Integration
run: scripts/bump_integration.sh