Skip to content

Commit 202bfc2

Browse files
committed
fix: bump version to 82-SNAPSHOT and use GH_PAT for branch protection bypass
v81 was published to Central but the version bump was blocked by branch protection (GITHUB_TOKEN cannot bypass required status checks). Revert to GH_PAT for checkout so git push can bypass branch protection.
1 parent d7db2ec commit 202bfc2

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v6
2626
with:
27-
token: ${{ secrets.GITHUB_TOKEN }}
27+
token: ${{ secrets.GH_PAT }}
2828
fetch-depth: 0
2929
- name: Check for changes
3030
id: check_changes

acceptance-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.quarkus.code</groupId>
99
<artifactId>code-quarkus-parent</artifactId>
10-
<version>81-SNAPSHOT</version>
10+
<version>82-SNAPSHOT</version>
1111
</parent>
1212
<properties>
1313
<maven.compiler.release>17</maven.compiler.release>

base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.quarkus.code</groupId>
1010
<artifactId>code-quarkus-parent</artifactId>
11-
<version>81-SNAPSHOT</version>
11+
<version>82-SNAPSHOT</version>
1212
</parent>
1313
<properties>
1414
<maven.compiler.parameters>true</maven.compiler.parameters>

community-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.quarkus.code</groupId>
66
<artifactId>code-quarkus-parent</artifactId>
7-
<version>81-SNAPSHOT</version>
7+
<version>82-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>code-quarkus-community-app</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.quarkus.code</groupId>
55
<artifactId>code-quarkus-parent</artifactId>
6-
<version>81-SNAPSHOT</version>
6+
<version>82-SNAPSHOT</version>
77
<packaging>pom</packaging>
88
<properties>
99
<code-quarkus.version>${project.version}</code-quarkus.version>

web-deps/locker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.quarkus.code</groupId>
66
<artifactId>code-quarkus-parent</artifactId>
7-
<version>81-SNAPSHOT</version>
7+
<version>82-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010
<artifactId>code-quarkus-web-deps-locker</artifactId>

web-deps/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.quarkus.code</groupId>
1010
<artifactId>code-quarkus-parent</artifactId>
11-
<version>81-SNAPSHOT</version>
11+
<version>82-SNAPSHOT</version>
1212
</parent>
1313
<dependencyManagement>
1414
<dependencies>

0 commit comments

Comments
 (0)