Skip to content

Commit 7fde3f5

Browse files
committed
Merge branch 'master' into copilot/fix-2ff1a76a-aff5-430f-b614-01b454821f8e
2 parents ccd7f0b + 3422f54 commit 7fde3f5

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
10-
- name: Set up JDK 1.8
11-
uses: actions/setup-java@v1
9+
- uses: actions/checkout@v4
10+
- name: Set up JDK 22
11+
uses: actions/setup-java@v4
1212
with:
13-
java-version: 1.8
13+
java-version: 22
14+
distribution: 'temurin'
1415
- name: Build with Gradle
1516
run: ./gradlew clean build -P pluginVersion=test --info --stacktrace
1617

.github/workflows/release.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,15 @@ jobs:
99
name: "Tagged Release Final"
1010
runs-on: "ubuntu-latest"
1111
steps:
12-
- uses: actions/checkout@v2
13-
- name: Set up JDK 1.8
14-
uses: actions/setup-java@v1
12+
- uses: actions/checkout@v4
13+
- name: Set up JDK 22
14+
uses: actions/setup-java@v4
1515
with:
16-
java-version: 1.8
16+
java-version: 22
17+
distribution: 'temurin'
1718
- name: Build with Gradle
1819
run: ./gradlew clean build --info --stacktrace
19-
- uses: "marvinpinto/action-automatic-releases@latest"
20+
- uses: softprops/action-gh-release@v2
2021
with:
21-
repo_token: "${{ secrets.GITHUB_TOKEN }}"
22-
prerelease: false
2322
files: |
2423
./build/libs/xlr-advanced-gating-plugin-*.*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Digital.ai customers
3+
Copyright (c) 2025 Digital.ai customers
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.ajoberstar.grgit' version '4.0.0'
2+
id 'org.ajoberstar.grgit' version '5.3.2'
33
id 'java'
44
}
55

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip

src/main/resources/advancedGating/Gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2021 Digital.ai
2+
# Copyright 2025 Digital.ai
33
#
44
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55
#

src/main/resources/advancedGating/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2021 Digital.ai
2+
# Copyright 2025 Digital.ai
33
#
44
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55
#

src/main/resources/synthetic.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8'?>
2-
<!-- Copyright 2021 Digital.ai
2+
<!-- Copyright 2025 Digital.ai
33
44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55

0 commit comments

Comments
 (0)