Skip to content

Commit a34502d

Browse files
committed
TEST 1
1 parent 7a1f44e commit a34502d

10 files changed

+29
-9
lines changed

.github/workflows/ea-version.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
with:
2424
distribution: 'jetbrains'
2525
java-version: ${{ matrix.ea }}
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2628

2729
- name: Verify Java version
2830
run: java -version

.github/workflows/lts-version.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test EA version
1+
name: Test LTS version
22

33
on:
44
push:
@@ -23,6 +23,8 @@ jobs:
2323
with:
2424
distribution: 'jetbrains'
2525
java-version: '21'
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2628

2729
- name: Verify Java version
2830
run: java -version

.github/workflows/test-actions-cache.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414
matrix:
1515
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm] # Include macos-latest for all except where overridden
1616
build-system: ['maven', 'gradle', 'sbt']
17-
include:
18-
- build-system: 'sbt'
19-
os: macos-12 # Override to use macOS-12 specifically for SBT builds
2017
exclude:
2118
- build-system: 'sbt'
2219
os: macos-latest # Exclude macos-latest specifically for SBT builds
@@ -30,7 +27,8 @@ jobs:
3027
with:
3128
distribution: 'jetbrains'
3229
java-version: '21'
33-
30+
env:
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3432

3533
- name: Cache Maven packages
3634
if: matrix.build-system == 'maven'

.github/workflows/test-architecture.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
distribution: 'jetbrains'
2626
java-version: ${{ matrix.java-version }}
2727
architecture: x86
28-
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2930
- name: Verify Java version
3031
run: java -version
3132

.github/workflows/test-cache-dependency-path.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
matrix:
1414
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, windows-11-arm]
1515
build-system: ['maven', 'gradle', 'sbt']
16-
include:
17-
- build-system: 'sbt'
18-
os: macos-12 # Override to use macOS-12 specifically for SBT builds
1916
exclude:
2017
- build-system: 'sbt'
2118
os: macos-latest # Exclude macos-latest specifically for SBT builds
@@ -32,6 +29,8 @@ jobs:
3229
java-version: '21'
3330
cache: 'maven'
3431
cache-dependency-path: 'pom.xml'
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3534

3635
- name: Set up Java with Gradle cache
3736
if: matrix.build-system == 'gradle'
@@ -43,6 +42,8 @@ jobs:
4342
cache-dependency-path: |
4443
*.gradle*
4544
**/gradle-wrapper.properties
45+
env:
46+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4647

4748
- name: Set up Java with sbt cache
4849
if: matrix.build-system == 'sbt'
@@ -52,6 +53,9 @@ jobs:
5253
java-version: '21'
5354
cache: 'sbt'
5455
cache-dependency-path: build.sbt
56+
env:
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
5559

5660
- name: Build with Maven
5761
if: matrix.build-system == 'maven'

.github/workflows/test-check-latest.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
distribution: 'jetbrains'
2525
java-version: '21'
2626
check-latest: true
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
2730

2831
- name: Verify Java version
2932
run: java -version

.github/workflows/test-java-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
distribution: 'jetbrains'
2525
java-version: '21'
2626
java-package: 'jre'
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2729

2830
- name: Verify Java version
2931
run: java -version

.github/workflows/test-java-version-file.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
with:
2525
distribution: 'jetbrains'
2626
java-version-file: '.java-version'
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2729

2830
- name: Verify Java version
2931
run: java -version

.github/workflows/test-java-version.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
with:
3232
distribution: 'jetbrains'
3333
java-version: ${{ matrix.java }}
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
3437
- run: java -version
3538
- run: javac -version
3639

.github/workflows/test-multiple-JDKs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
21
2727
11
2828
17
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
2932

3033
- name: Verify JDK 8
3134
run: java -version

0 commit comments

Comments
 (0)