Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply Ocean version 0.10.12 to all integrations #1045

Merged
merged 29 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9b05892
Fix bump-all
erikzaadi Sep 22, 2024
0226403
Bumped ocean version to ^0.10.12 for argocd
erikzaadi Sep 22, 2024
e7bca5e
Bumped ocean version to ^0.10.12 for aws
erikzaadi Sep 22, 2024
7824161
Bumped ocean version to ^0.10.12 for azure
erikzaadi Sep 22, 2024
911b0df
Bumped ocean version to ^0.10.12 for azure-devops
erikzaadi Sep 22, 2024
2b02460
Bumped ocean version to ^0.10.12 for datadog
erikzaadi Sep 22, 2024
4cfed36
Bumped ocean version to ^0.10.12 for dynatrace
erikzaadi Sep 22, 2024
a47d183
Bumped ocean version to ^0.10.12 for fake-integration
erikzaadi Sep 22, 2024
c8e8984
Bumped ocean version to ^0.10.12 for firehydrant
erikzaadi Sep 22, 2024
25052a5
Bumped ocean version to ^0.10.12 for gcp
erikzaadi Sep 22, 2024
5e21c97
Bumped ocean version to ^0.10.12 for gitlab
erikzaadi Sep 22, 2024
8235fd4
Bumped ocean version to ^0.10.12 for jenkins
erikzaadi Sep 22, 2024
ca809d3
Bumped ocean version to ^0.10.12 for jira
erikzaadi Sep 22, 2024
4d0ebc6
Bumped ocean version to ^0.10.12 for kafka
erikzaadi Sep 22, 2024
cde36e2
Bumped ocean version to ^0.10.12 for kubecost
erikzaadi Sep 22, 2024
c570749
Bumped ocean version to ^0.10.12 for launchdarkly
erikzaadi Sep 22, 2024
3a1f3df
Bumped ocean version to ^0.10.12 for linear
erikzaadi Sep 22, 2024
3509563
Bumped ocean version to ^0.10.12 for newrelic
erikzaadi Sep 22, 2024
36502d8
Bumped ocean version to ^0.10.12 for octopus
erikzaadi Sep 22, 2024
5d55ef0
Bumped ocean version to ^0.10.12 for opencost
erikzaadi Sep 22, 2024
6cb3ae9
Bumped ocean version to ^0.10.12 for opsgenie
erikzaadi Sep 22, 2024
53a6b87
Bumped ocean version to ^0.10.12 for pagerduty
erikzaadi Sep 22, 2024
a10ed7b
Bumped ocean version to ^0.10.12 for sentry
erikzaadi Sep 22, 2024
c518fa5
Bumped ocean version to ^0.10.12 for servicenow
erikzaadi Sep 22, 2024
c3ace94
Bumped ocean version to ^0.10.12 for snyk
erikzaadi Sep 22, 2024
627a6d3
Bumped ocean version to ^0.10.12 for sonarqube
erikzaadi Sep 22, 2024
9c4102c
Bumped ocean version to ^0.10.12 for statuspage
erikzaadi Sep 22, 2024
2641809
Bumped ocean version to ^0.10.12 for terraform-cloud
erikzaadi Sep 22, 2024
8e88c5e
Bumped ocean version to ^0.10.12 for wiz
erikzaadi Sep 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/apply-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"

./scripts/bump-all.sh ^${{ steps.version.outputs.version }}
./scripts/bump-all.sh ${{ steps.version.outputs.version }}


- name: Open pull request
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
SCRIPT_BASE="$(cd -P "$(dirname "$0")" && pwd)"
ROOT_DIR="$(cd -P "${SCRIPT_BASE}/../" && pwd)"
CURRENT_DIR=$(pwd)
VERSION="^$(cd "${ROOT_DIR}" && source ./.venv/bin/activate && poetry version --short)"
VERSION="^${1:-$(poetry search port-ocean | grep port-ocean | sed 's/.*(\(.*\))/\1/')}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💣


echo "Going to bump ocean core to version ${VERSION} for all integrations"

Expand Down