File tree Expand file tree Collapse file tree 6 files changed +12
-40
lines changed
Expand file tree Collapse file tree 6 files changed +12
-40
lines changed Original file line number Diff line number Diff line change 33# global
44* @ hypertrace/build-tooling
55
6- # GH action
7- .github / @ aaron-steinfeld @ jbahire @ kotharironak @ buchi-busireddy
Original file line number Diff line number Diff line change 99
1010jobs :
1111 build :
12- runs-on : ubuntu-20 .04
12+ runs-on : ubuntu-24 .04
1313 steps :
1414 # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1515 - name : Check out code
16- uses : actions/checkout@v2.3.4
16+ uses : actions/checkout@v4
1717 with :
1818 ref : ${{github.event.pull_request.head.ref}}
1919 repository : ${{github.event.pull_request.head.repo.full_name}}
2020 fetch-depth : 0
2121
22- - name : create checksum file
23- uses : hypertrace/github-actions/checksum@main
24-
25- - name : Cache packages
26- uses : actions/cache@v2
27- with :
28- path : ~/.gradle
29- key : gradle-packages-${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/checksum.txt') }}
30- restore-keys : |
31- gradle-packages-${{ runner.os }}-${{ github.job }}
32- gradle-packages-${{ runner.os }}
33-
3422 - name : Build with Gradle
3523 uses : hypertrace/github-actions/gradle@main
3624 with :
Original file line number Diff line number Diff line change 88
99jobs :
1010 publish-artifacts :
11- runs-on : ubuntu-20 .04
11+ runs-on : ubuntu-24 .04
1212 steps :
1313 # Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1414 - name : Check out code
15- uses : actions/checkout@v2.3.4
15+ uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818
19- - name : create checksum file
20- uses : hypertrace/github-actions/checksum@main
21-
22- - name : Cache packages
23- uses : actions/cache@v2
24- with :
25- path : ~/.gradle
26- key : gradle-packages-${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/checksum.txt') }}
27- restore-keys : |
28- gradle-packages-${{ runner.os }}-${{ github.job }}
29- gradle-packages-${{ runner.os }}
30-
3119 - name : publish java artifacts
3220 uses : hypertrace/github-actions/gradle@main
3321 with :
3422 args : publish
3523 env :
36- ORG_GRADLE_PROJECT_artifactory_contextUrl : ${{ secrets.ARTIFACTORY_CONTEXT_URL }}
37- ORG_GRADLE_PROJECT_artifactory_user : ${{ secrets.ARTIFACTORY_PUBLISH_USER }}
38- ORG_GRADLE_PROJECT_artifactory_password : ${{ secrets.ARTIFACTORY_PUBLISH_TOKEN }}
24+ ORG_GRADLE_PROJECT_maven_repo_url : ${{ secrets.HAR_REPO_URL }}
25+ ORG_GRADLE_PROJECT_maven_user : ${{ secrets.HAR_PUBLISH_USER }}
26+ ORG_GRADLE_PROJECT_maven_password : ${{ secrets.HAR_PUBLISH_TOKEN }}
Original file line number Diff line number Diff line change 11# Hypertrace Gradle Docker Plugins
22
3- [ ![ CircleCI] ( https://circleci.com/gh/hypertrace/hypertrace-gradle-docker-plugins.svg?style=svg )] ( https://circleci.com/gh/hypertrace/hypertrace-gradle-docker-plugins )
4-
53A collection of plugins for working with docker in gradle using the Hypertrace conventions, including
64publishing to the Hypertrace docker repository. See individual plugin READMEs for more details.
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
22import org.hypertrace.gradle.publishing.License
33
44plugins {
5- id(" org.hypertrace.ci-utils-plugin" ) version " 0.3 .0"
6- id(" org.hypertrace.publish-plugin" ) version " 1.0.4 " apply false
7- id(" org.hypertrace.repository-plugin" ) version " 0.4 .0"
5+ id(" org.hypertrace.ci-utils-plugin" ) version " 0.4 .0"
6+ id(" org.hypertrace.publish-plugin" ) version " 1.1.1 " apply false
7+ id(" org.hypertrace.repository-plugin" ) version " 0.5 .0"
88}
99
1010subprojects {
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ pluginManagement {
22 repositories {
33 mavenLocal()
44 gradlePluginPortal()
5- maven(" https://hypertrace.jfrog.io/artifactory /maven" )
5+ maven(" https://us-maven.pkg.dev/hypertrace-repos /maven" )
66 }
77}
88
99plugins {
10- id(" org.hypertrace.version-settings" ) version " 0.2 .0"
10+ id(" org.hypertrace.version-settings" ) version " 0.3 .0"
1111}
1212
1313rootProject.name = " hypertrace-gradle-docker-plugins"
You can’t perform that action at this time.
0 commit comments