Skip to content

Commit 781fbc1

Browse files
authored
Merge branch 'master' into development-cloudconfig
2 parents 6303b5a + d6c14de commit 781fbc1

File tree

22 files changed

+40
-34
lines changed

22 files changed

+40
-34
lines changed

.github/scripts/create-release.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ if [ "$VARIANT" = "" ]; then
105105
git clean -xdf
106106
echo "Updating docs in master branch ..."
107107
git checkout master
108+
git fetch origin
108109
git reset --hard origin/master
109110
git cherry-pick --strategy=recursive -X theirs $RELEASE_TAG
110111
git push origin master

.github/workflows/create-release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
with:
3434
fetch-depth: 0
3535
token: ${{ secrets.DAPR_BOT_TOKEN }}
36+
persist-credentials: false
3637
- name: Set up OpenJDK ${{ env.JDK_VER }}
3738
uses: actions/setup-java@v4
3839
with:
@@ -43,9 +44,13 @@ jobs:
4344
sudo apt-get update
4445
sudo apt-get install pcre2-utils
4546
- name: Create release branch and tag
47+
env:
48+
GITHUB_TOKEN: ${{ secrets.DAPR_BOT_TOKEN }}
4649
run: |
4750
git config user.email "daprweb@microsoft.com"
4851
git config user.name "Dapr Bot"
52+
# Update origin with token
53+
git remote set-url origin https://x-access-token:${{ secrets.DAPR_BOT_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git
4954
# Copy first to allow automation to use the latest version and not the release branch's version.
5055
cp -R ./.github/scripts ${RUNNER_TEMP}/
5156
${RUNNER_TEMP}/scripts/create-release.sh ${{ inputs.rel_version }}

dapr-spring/dapr-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.15.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-boot-autoconfigure</artifactId>

dapr-spring/dapr-spring-boot-starters/dapr-spring-boot-starter-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.15.0-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

dapr-spring/dapr-spring-boot-starters/dapr-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.15.0-SNAPSHOT</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

dapr-spring/dapr-spring-boot-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.15.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-boot-tests</artifactId>

dapr-spring/dapr-spring-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.15.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-data</artifactId>

dapr-spring/dapr-spring-messaging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.15.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-messaging</artifactId>

dapr-spring/dapr-spring-workflows/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.dapr.spring</groupId>
88
<artifactId>dapr-spring-parent</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.15.0-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>dapr-spring-workflows</artifactId>

dapr-spring/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<parent>
88
<groupId>io.dapr</groupId>
99
<artifactId>dapr-sdk-parent</artifactId>
10-
<version>1.14.0-SNAPSHOT</version>
10+
<version>1.15.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<groupId>io.dapr.spring</groupId>
1414
<artifactId>dapr-spring-parent</artifactId>
1515
<packaging>pom</packaging>
16-
<version>0.14.0-SNAPSHOT</version>
16+
<version>0.15.0-SNAPSHOT</version>
1717
<name>dapr-spring-parent</name>
1818
<description>SDK extension for Spring and Spring Boot</description>
1919

0 commit comments

Comments
 (0)