Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 272883a

Browse files
committed
Remove all action sources: these have been migrated to 'gradle/actions'
Starting with the `v3` release, this action will delegate to `gradle/actions/setup-gradle`. All repository sources have been migrated to https://github.com/gradle/actions, and are no longer required in this repository. Workflows testing the action functionality have been retained, but any workflows involving building or inspecting code have also been migrated to `gradle/actions`.
1 parent 2a8bfcf commit 272883a

File tree

97 files changed

+1
-302990
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+1
-302990
lines changed

.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/actions/build-dist/action.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/actions/download-dist/action.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,6 @@ updates:
1515
patterns:
1616
- "*"
1717

18-
- package-ecosystem: "npm"
19-
directory: "/"
20-
schedule:
21-
interval: "weekly"
22-
ignore:
23-
- dependency-name: "@types/node" # Breaking change: update with next major release
24-
- dependency-name: "@octokit/rest" # Tied to node version
25-
groups:
26-
npm-dependencies:
27-
patterns:
28-
- "*"
29-
3018
- package-ecosystem: "gradle"
3119
directory: ".github/workflow-samples/gradle-plugin"
3220
registries:
@@ -63,9 +51,3 @@ updates:
6351
- gradle-plugin-portal
6452
schedule:
6553
interval: "daily"
66-
- package-ecosystem: "gradle"
67-
directory: "test/init-scripts"
68-
registries:
69-
- gradle-plugin-portal
70-
schedule:
71-
interval: "daily"

.github/workflows/ci-codeql.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/ci-dependency-review.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/ci-full-check.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ jobs:
2020
with:
2121
cache-key-prefix: ${{github.run_number}}-
2222

23-
cache-cleanup:
24-
uses: ./.github/workflows/integ-test-cache-cleanup.yml
25-
with:
26-
cache-key-prefix: ${{github.run_number}}-
27-
2823
caching-config:
2924
uses: ./.github/workflows/integ-test-caching-config.yml
3025
with:

.github/workflows/ci-init-script-check.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/ci-quick-check.yml

Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -8,148 +8,84 @@ on:
88
- release/**
99

1010
jobs:
11-
build-distribution:
12-
runs-on: ubuntu-latest
13-
steps:
14-
- name: Checkout sources
15-
uses: actions/checkout@v4
16-
- name: Build and upload distribution
17-
uses: ./.github/actions/build-dist
18-
19-
run-unit-tests:
20-
runs-on: ubuntu-latest
21-
steps:
22-
- name: Checkout sources
23-
uses: actions/checkout@v4
24-
- name: Configure Gradle as default for unit test
25-
uses: ./
26-
with:
27-
gradle-version: 8.5
28-
- name: Run tests
29-
run: |
30-
npm install
31-
npm run all
32-
3311
action-inputs:
34-
needs: build-distribution
3512
uses: ./.github/workflows/integ-test-action-inputs.yml
3613
with:
3714
runner-os: '["ubuntu-latest"]'
38-
download-dist: true
39-
40-
cache-cleanup:
41-
needs: build-distribution
42-
uses: ./.github/workflows/integ-test-cache-cleanup.yml
43-
with:
44-
runner-os: '["ubuntu-latest"]'
45-
download-dist: true
46-
cache-key-prefix: ${{github.run_number}}- # Requires a fresh cache entry each run
4715

4816
caching-config:
49-
needs: build-distribution
5017
uses: ./.github/workflows/integ-test-caching-config.yml
5118
with:
5219
runner-os: '["ubuntu-latest"]'
53-
download-dist: true
5420

5521
dependency-graph:
56-
needs: build-distribution
5722
uses: ./.github/workflows/integ-test-dependency-graph.yml
5823
permissions:
5924
contents: write
6025
with:
6126
runner-os: '["ubuntu-latest"]'
62-
download-dist: true
6327

6428
dependency-graph-failures:
65-
needs: build-distribution
6629
uses: ./.github/workflows/integ-test-dependency-graph-failures.yml
6730
with:
6831
runner-os: '["ubuntu-latest"]'
69-
download-dist: true
7032

7133
execution-with-caching:
72-
needs: build-distribution
7334
uses: ./.github/workflows/integ-test-execution-with-caching.yml
7435
with:
7536
runner-os: '["ubuntu-latest"]'
76-
download-dist: true
7737

7838
execution:
79-
needs: build-distribution
8039
uses: ./.github/workflows/integ-test-execution.yml
8140
with:
8241
runner-os: '["ubuntu-latest"]'
83-
download-dist: true
8442

8543
develocity-injection:
86-
needs: build-distribution
8744
uses: ./.github/workflows/integ-test-inject-develocity.yml
8845
with:
8946
runner-os: '["ubuntu-latest"]'
90-
download-dist: true
9147
secrets:
9248
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}
9349

9450
provision-gradle-versions:
95-
needs: build-distribution
9651
uses: ./.github/workflows/integ-test-provision-gradle-versions.yml
9752
with:
9853
runner-os: '["ubuntu-latest"]'
99-
download-dist: true
10054

10155
restore-configuration-cache:
102-
needs: build-distribution
10356
uses: ./.github/workflows/integ-test-restore-configuration-cache.yml
10457
with:
10558
runner-os: '["ubuntu-latest"]'
106-
download-dist: true
10759
secrets:
10860
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
10961

11062
restore-containerized-gradle-home:
111-
needs: build-distribution
11263
uses: ./.github/workflows/integ-test-restore-containerized-gradle-home.yml
113-
with:
114-
download-dist: true
11564

11665
restore-custom-gradle-home:
117-
needs: build-distribution
11866
uses: ./.github/workflows/integ-test-restore-custom-gradle-home.yml
119-
with:
120-
download-dist: true
12167

12268
restore-gradle-home:
123-
needs: build-distribution
12469
uses: ./.github/workflows/integ-test-restore-gradle-home.yml
12570
with:
12671
runner-os: '["ubuntu-latest"]'
127-
download-dist: true
12872

12973
restore-java-toolchain:
130-
needs: build-distribution
13174
uses: ./.github/workflows/integ-test-restore-java-toolchain.yml
13275
with:
13376
runner-os: '["ubuntu-latest"]'
134-
download-dist: true
13577

13678
sample-kotlin-dsl:
137-
needs: build-distribution
13879
uses: ./.github/workflows/integ-test-sample-kotlin-dsl.yml
13980
with:
14081
runner-os: '["ubuntu-latest"]'
141-
download-dist: true
14282

14383
sample-gradle-plugin:
144-
needs: build-distribution
14584
uses: ./.github/workflows/integ-test-sample-gradle-plugin.yml
14685
with:
14786
runner-os: '["ubuntu-latest"]'
148-
download-dist: true
14987

15088
toolchain-detection:
151-
needs: build-distribution
15289
uses: ./.github/workflows/integ-test-detect-java-toolchains.yml
15390
with:
15491
runner-os: '["ubuntu-latest"]'
155-
download-dist: true

0 commit comments

Comments
 (0)