Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 9 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ env:
THIRD_PARTY_GIT_AUTHOR_EMAIL: opensource+bot@newrelic.com
THIRD_PARTY_GIT_AUTHOR_NAME: nr-opensource-bot

permissions:
contents: write

jobs:
build-and-release:
runs-on: ubuntu-latest
Expand All @@ -18,10 +21,10 @@ jobs:
fetch-depth: 0


- name: Set up JDK 8
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 8
java-version: 21
distribution: 'temurin'


Expand All @@ -35,7 +38,7 @@ jobs:

- name: Build with Gradle and verifyInstrumentation
run: |
./gradlew clean build install verifyInstrumentation
./gradlew clean install verifyInstrumentation

- name: Identify Release Type
id: define_release_type
Expand Down Expand Up @@ -110,7 +113,7 @@ jobs:

- name: Create Release
id: create_release
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
script: |
Expand Down Expand Up @@ -180,7 +183,7 @@ jobs:
git commit -m "Update Changelog for Release [skip ci]"

# Push the changes to the remote repository
git push --quiet --set-upstream origin HEAD
# git push --quiet --set-upstream origin HEAD

- name: Get Compare URL
run: |
Expand All @@ -190,7 +193,7 @@ jobs:

- name: Update Release
id: update_release
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ secrets.OPENSOURCE_BOT_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {

dependencies {
classpath 'gradle-templates:gradle-templates:1.5'
classpath 'com.newrelic.agent.java:gradle-verify-instrumentation-plugin:3.2'
classpath 'com.newrelic.agent.java:gradle-verify-instrumentation-plugin:4.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
java.agent.version=8.4.0
java.agent.version=8.6.0
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
53 changes: 0 additions & 53 deletions newrelic-dependencies.sh

This file was deleted.

Loading