File tree Expand file tree Collapse file tree 5 files changed +69
-8
lines changed
Expand file tree Collapse file tree 5 files changed +69
-8
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,13 @@ jobs:
1212 java : [8, 11]
1313 steps :
1414 - uses : actions/checkout@v2
15- - uses : actions/setup-java@v1
15+ - uses : actions/setup-java@v5
1616 with :
1717 java-version : ${{matrix.java}}
18+ distribution : ' temurin'
1819 - name : Get current date
1920 id : date
2021 run : echo "date=$(date +'%Y-%m-%d' --utc)" >> "$GITHUB_OUTPUT"
21- - uses : actions/cache@v2
22- id : mvn-cache
23- with :
24- path : ~/.m2/repository
25- key : ${{ runner.os }}-maven-unified-${{ steps.date.outputs.date }}
2622 - run : java -version
2723 # The http connection settings avoid Maven's HTTP connection reset in GitHub Actions
2824 # https://github.com/actions/virtual-environments/issues/1499#issuecomment-689467080
Original file line number Diff line number Diff line change 1+ {
2+ "boms/cloud-lts-bom" : " 7.0.1"
3+ }
Original file line number Diff line number Diff line change 77
88 <groupId >com.google.cloud</groupId >
99 <artifactId >gcp-lts-bom</artifactId >
10- <version >7.0.2-SNAPSHOT</version >
10+ <version >7.0.2-SNAPSHOT</version ><!-- {x-version-update:gcp-lts-bom:current} -->
1111 <packaging >pom</packaging >
1212
1313 <name >Google Cloud Long Term Support BOM</name >
500500 </dependency >
501501 </dependencies >
502502 </dependencyManagement >
503-
503+ <profiles >
504+ <profile >
505+ <id >release</id >
506+ <activation >
507+ <property >
508+ <name >performRelease</name >
509+ </property >
510+ </activation >
511+ <build >
512+ <plugins >
513+ <plugin >
514+ <groupId >org.apache.maven.plugins</groupId >
515+ <artifactId >maven-gpg-plugin</artifactId >
516+ <version >3.2.7</version >
517+ <executions >
518+ <execution >
519+ <id >sign-artifacts</id >
520+ <phase >verify</phase >
521+ <goals >
522+ <goal >sign</goal >
523+ </goals >
524+ <configuration >
525+ <gpgArguments >
526+ <arg >--pinentry-mode</arg >
527+ <arg >loopback</arg >
528+ </gpgArguments >
529+ </configuration >
530+ </execution >
531+ </executions >
532+ </plugin >
533+ <plugin >
534+ <groupId >org.apache.maven.plugins</groupId >
535+ <artifactId >maven-source-plugin</artifactId >
536+ <version >3.3.1</version >
537+ <executions >
538+ <execution >
539+ <id >attach-sources</id >
540+ <goals >
541+ <goal >jar-no-fork</goal >
542+ </goals >
543+ </execution >
544+ </executions >
545+ </plugin >
546+ </plugins >
547+ </build >
548+ </profile >
549+ </profiles >
504550</project >
Original file line number Diff line number Diff line change 1+ # Format:
2+ # module:released-version:current-version
3+
4+ gcp-lts-bom:7.0.1:7.0.2-SNAPSHOT
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" ,
3+ "separate-pull-requests" : true ,
4+ "include-component-in-tag" : true ,
5+ "packages" : {
6+ "boms/cloud-lts-bom" : {
7+ "component" : " gcp-lts-bom" ,
8+ "release-type" : " java-yoshi"
9+ }
10+ },
11+ "bootstrap-sha" : " 6b9240114536a03b72929d5fade85599fbdbbdd0"
12+ }
You can’t perform that action at this time.
0 commit comments