Moved workflow samples out of .github/workflows

The `.github/workflows` directory has additional permissions attached, preventing these
files from being by the Upgrade Gradle Wrapper plugin.
This commit is contained in:
Daz DeBoer 2022-04-05 09:45:02 -06:00
parent 3317bc450c
commit 3c3fdfcc0c
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
55 changed files with 57 additions and 57 deletions

View file

@ -13,37 +13,37 @@ updates:
ignore: ignore:
- dependency-name: "@types/node" - dependency-name: "@types/node"
- package-ecosystem: "gradle" - package-ecosystem: "gradle"
directory: ".github/workflows/samples/gradle-plugin" directory: ".github/workflow-samples/gradle-plugin"
registries: registries:
- gradle-plugin-portal - gradle-plugin-portal
schedule: schedule:
interval: "daily" interval: "daily"
- package-ecosystem: "gradle" - package-ecosystem: "gradle"
directory: ".github/workflows/samples/groovy-dsl" directory: ".github/workflow-samples/groovy-dsl"
registries: registries:
- gradle-plugin-portal - gradle-plugin-portal
schedule: schedule:
interval: "daily" interval: "daily"
- package-ecosystem: "gradle" - package-ecosystem: "gradle"
directory: ".github/workflows/samples/java-toolchain" directory: ".github/workflow-samples/java-toolchain"
registries: registries:
- gradle-plugin-portal - gradle-plugin-portal
schedule: schedule:
interval: "daily" interval: "daily"
- package-ecosystem: "gradle" - package-ecosystem: "gradle"
directory: ".github/workflows/samples/kotlin-dsl" directory: ".github/workflow-samples/kotlin-dsl"
registries: registries:
- gradle-plugin-portal - gradle-plugin-portal
schedule: schedule:
interval: "daily" interval: "daily"
- package-ecosystem: "gradle" - package-ecosystem: "gradle"
directory: ".github/workflows/samples/no-wrapper" directory: ".github/workflow-samples/no-wrapper"
registries: registries:
- gradle-plugin-portal - gradle-plugin-portal
schedule: schedule:
interval: "daily" interval: "daily"
- package-ecosystem: "gradle" - package-ecosystem: "gradle"
directory: ".github/workflows/samples/no-wrapper-gradle-5" directory: ".github/workflow-samples/no-wrapper-gradle-5"
registries: registries:
- gradle-plugin-portal - gradle-plugin-portal
schedule: schedule:

View file

@ -17,7 +17,7 @@ jobs:
uses: ./ uses: ./
continue-on-error: true continue-on-error: true
with: with:
build-root-directory: .github/workflows/samples/no-wrapper build-root-directory: .github/workflow-samples/no-wrapper
arguments: help arguments: help
bad-configuration: bad-configuration:
@ -29,6 +29,6 @@ jobs:
uses: ./ uses: ./
continue-on-error: true continue-on-error: true
with: with:
build-root-directory: .github/workflows/samples/no-wrapper build-root-directory: .github/workflow-samples/no-wrapper
arguments: help arguments: help
cache-disabled: yes cache-disabled: yes

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -27,7 +27,7 @@ jobs:
- name: Invoke with multi-line arguments - name: Invoke with multi-line arguments
uses: ./ uses: ./
with: with:
build-root-directory: .github/workflows/samples/groovy-dsl build-root-directory: .github/workflow-samples/groovy-dsl
arguments: | arguments: |
--configuration-cache --configuration-cache
--build-cache --build-cache

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -36,7 +36,7 @@ jobs:
gradle-home-cache-excludes: | gradle-home-cache-excludes: |
caches/build-cache-1 caches/build-cache-1
- name: Build using Gradle wrapper - name: Build using Gradle wrapper
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test run: ./gradlew test
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline # Test that the gradle-user-home cache will cache dependencies, by running build with --offline
@ -60,7 +60,7 @@ jobs:
caches/build-cache-1 caches/build-cache-1
cache-read-only: true cache-read-only: true
- name: Execute Gradle build with --offline - name: Execute Gradle build with --offline
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --offline run: ./gradlew test --offline
# Test that build scans are captured when caching is explicitly disabled # Test that build scans are captured when caching is explicitly disabled
@ -78,7 +78,7 @@ jobs:
cache-disabled: true cache-disabled: true
- name: Run Gradle build - name: Run Gradle build
id: gradle id: gradle
working-directory: .github/workflows/samples/no-wrapper${{ matrix.build-root-suffix }} working-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}" run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
- name: Check build scan url is captured - name: Check build scan url is captured
if: ${{ !steps.gradle.outputs.build-scan-url }} if: ${{ !steps.gradle.outputs.build-scan-url }}
@ -99,7 +99,7 @@ jobs:
uses: ./ uses: ./
- name: Run Gradle build - name: Run Gradle build
id: gradle id: gradle
working-directory: .github/workflows/samples/no-wrapper${{ matrix.build-root-suffix }} working-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}" run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
- name: Check build scan url is captured - name: Check build scan url is captured
if: ${{ !steps.gradle.outputs.build-scan-url }} if: ${{ !steps.gradle.outputs.build-scan-url }}
@ -124,7 +124,7 @@ jobs:
with: with:
cache-write-only: true cache-write-only: true
- name: Build using Gradle wrapper - name: Build using Gradle wrapper
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test run: ./gradlew test
verify-write-only-build: verify-write-only-build:
@ -143,6 +143,6 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Execute Gradle build with --offline - name: Execute Gradle build with --offline
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --offline run: ./gradlew test --offline

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -31,7 +31,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Groovy build with configuration-cache enabled - name: Groovy build with configuration-cache enabled
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --configuration-cache run: ./gradlew test --configuration-cache
configuration-cache-groovy: configuration-cache-groovy:
@ -51,7 +51,7 @@ jobs:
cache-read-only: true cache-read-only: true
- name: Groovy build with configuration-cache enabled - name: Groovy build with configuration-cache enabled
id: execute id: execute
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --configuration-cache run: ./gradlew test --configuration-cache
- name: Check that configuration-cache was used - name: Check that configuration-cache was used
if: ${{ steps.execute.outputs.task_configured == 'yes' }} if: ${{ steps.execute.outputs.task_configured == 'yes' }}
@ -79,7 +79,7 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Check execute Gradle build with configuration cache enabled (but not restored) - name: Check execute Gradle build with configuration cache enabled (but not restored)
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --configuration-cache run: ./gradlew test --configuration-cache
seed-build-kotlin: seed-build-kotlin:
@ -95,7 +95,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Execute 'help' with configuration-cache enabled - name: Execute 'help' with configuration-cache enabled
working-directory: .github/workflows/samples/kotlin-dsl working-directory: .github/workflow-samples/kotlin-dsl
run: ./gradlew help --configuration-cache run: ./gradlew help --configuration-cache
modify-build-kotlin: modify-build-kotlin:
@ -112,7 +112,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Execute 'test' with configuration-cache enabled - name: Execute 'test' with configuration-cache enabled
working-directory: .github/workflows/samples/kotlin-dsl working-directory: .github/workflow-samples/kotlin-dsl
run: ./gradlew test --configuration-cache run: ./gradlew test --configuration-cache
# Test restore configuration-cache from the third build invocation # Test restore configuration-cache from the third build invocation
@ -133,7 +133,7 @@ jobs:
cache-read-only: true cache-read-only: true
- name: Execute 'test' again with configuration-cache enabled - name: Execute 'test' again with configuration-cache enabled
id: execute id: execute
working-directory: .github/workflows/samples/kotlin-dsl working-directory: .github/workflow-samples/kotlin-dsl
run: ./gradlew test --configuration-cache run: ./gradlew test --configuration-cache
- name: Check that configuration-cache was used - name: Check that configuration-cache was used
if: ${{ steps.execute.outputs.task_configured == 'yes' }} if: ${{ steps.execute.outputs.task_configured == 'yes' }}

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -27,7 +27,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Build using Gradle wrapper - name: Build using Gradle wrapper
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test run: ./gradlew test
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline # Test that the gradle-user-home cache will cache dependencies, by running build with --offline
@ -45,7 +45,7 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Execute Gradle build with --offline - name: Execute Gradle build with --offline
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --offline run: ./gradlew test --offline
# Test that the gradle-user-home cache will cache and restore local build-cache # Test that the gradle-user-home cache will cache and restore local build-cache
@ -63,7 +63,7 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Execute Gradle build and verify tasks from cache - name: Execute Gradle build and verify tasks from cache
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test -DverifyCachedBuild=true run: ./gradlew test -DverifyCachedBuild=true
# Check that the build can run when Gradle User Home is not fully restored # Check that the build can run when Gradle User Home is not fully restored
@ -83,6 +83,6 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Check executee Gradle build - name: Check executee Gradle build
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test run: ./gradlew test

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -27,7 +27,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Build using Gradle wrapper - name: Build using Gradle wrapper
working-directory: .github/workflows/samples/java-toolchain working-directory: .github/workflow-samples/java-toolchain
run: ./gradlew test --info run: ./gradlew test --info
# Test that the gradle-user-home cache will cache the toolchain, by running build with --offline # Test that the gradle-user-home cache will cache the toolchain, by running build with --offline
@ -45,5 +45,5 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Execute Gradle build with --offline - name: Execute Gradle build with --offline
working-directory: .github/workflows/samples/java-toolchain working-directory: .github/workflow-samples/java-toolchain
run: ./gradlew test --info --offline run: ./gradlew test --info --offline

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -27,7 +27,7 @@ jobs:
- name: Exucute Gradle build - name: Exucute Gradle build
uses: ./ uses: ./
with: with:
build-root-directory: .github/workflows/samples/groovy-dsl build-root-directory: .github/workflow-samples/groovy-dsl
arguments: test arguments: test
# Test that the gradle-user-home is restored # Test that the gradle-user-home is restored
@ -44,6 +44,6 @@ jobs:
uses: ./ uses: ./
with: with:
cache-read-only: true cache-read-only: true
build-root-directory: .github/workflows/samples/groovy-dsl build-root-directory: .github/workflow-samples/groovy-dsl
arguments: test --offline -DverifyCachedBuild=true arguments: test --offline -DverifyCachedBuild=true

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -33,19 +33,19 @@ jobs:
uses: ./ uses: ./
with: with:
gradle-version: 6.9 gradle-version: 6.9
build-root-directory: .github/workflows/samples/no-wrapper build-root-directory: .github/workflow-samples/no-wrapper
arguments: help -DgradleVersionCheck=6.9 arguments: help -DgradleVersionCheck=6.9
- name: Test use Gradle version alias - name: Test use Gradle version alias
uses: ./ uses: ./
with: with:
gradle-version: release-candidate gradle-version: release-candidate
build-root-directory: .github/workflows/samples/no-wrapper build-root-directory: .github/workflow-samples/no-wrapper
arguments: help arguments: help
- name: Test use defined Gradle executable - name: Test use defined Gradle executable
uses: ./ uses: ./
with: with:
gradle-executable: .github/workflows/samples/groovy-dsl/gradlew${{ matrix.script-suffix }} gradle-executable: .github/workflow-samples/groovy-dsl/gradlew${{ matrix.script-suffix }}
build-root-directory: .github/workflows/samples/no-wrapper build-root-directory: .github/workflow-samples/no-wrapper
arguments: help -DgradleVersionCheck=7.4.2 arguments: help -DgradleVersionCheck=7.4.2
gradle-versions: gradle-versions:
@ -67,7 +67,7 @@ jobs:
id: gradle id: gradle
with: with:
gradle-version: ${{matrix.gradle}} gradle-version: ${{matrix.gradle}}
build-root-directory: .github/workflows/samples/no-wrapper${{ matrix.build-root-suffix }} build-root-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
arguments: help -DgradleVersionCheck=${{matrix.gradle}} arguments: help -DgradleVersionCheck=${{matrix.gradle}}
- name: Check build scan url - name: Check build scan url
if: ${{ !steps.gradle.outputs.build-scan-url }} if: ${{ !steps.gradle.outputs.build-scan-url }}

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -30,7 +30,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Build using Gradle wrapper - name: Build using Gradle wrapper
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --info run: ./gradlew test --info
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline # Test that the gradle-user-home cache will cache dependencies, by running build with --offline
@ -48,7 +48,7 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Execute Gradle build with --offline - name: Execute Gradle build with --offline
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test --offline --info run: ./gradlew test --offline --info
# Test that the gradle-user-home cache will cache and restore local build-cache # Test that the gradle-user-home cache will cache and restore local build-cache
@ -66,5 +66,5 @@ jobs:
with: with:
cache-read-only: true cache-read-only: true
- name: Execute Gradle build and verify tasks from cache - name: Execute Gradle build and verify tasks from cache
working-directory: .github/workflows/samples/groovy-dsl working-directory: .github/workflow-samples/groovy-dsl
run: ./gradlew test -DverifyCachedBuild=true --info run: ./gradlew test -DverifyCachedBuild=true --info

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -34,21 +34,21 @@ jobs:
with: with:
gradle-version: 6.9 gradle-version: 6.9
- name: Test uses Gradle v6.9 - name: Test uses Gradle v6.9
working-directory: .github/workflows/samples/no-wrapper working-directory: .github/workflow-samples/no-wrapper
run: gradle help "-DgradleVersionCheck=6.9" run: gradle help "-DgradleVersionCheck=6.9"
- name: Setup Gradle with v7.1.1 - name: Setup Gradle with v7.1.1
uses: ./ uses: ./
with: with:
gradle-version: 7.1.1 gradle-version: 7.1.1
- name: Test uses Gradle v7.1.1 - name: Test uses Gradle v7.1.1
working-directory: .github/workflows/samples/no-wrapper working-directory: .github/workflow-samples/no-wrapper
run: gradle help "-DgradleVersionCheck=7.1.1" run: gradle help "-DgradleVersionCheck=7.1.1"
- name: Setup Gradle with release-candidate - name: Setup Gradle with release-candidate
uses: ./ uses: ./
with: with:
gradle-version: release-candidate gradle-version: release-candidate
- name: Test use release-candidate - name: Test use release-candidate
working-directory: .github/workflows/samples/no-wrapper working-directory: .github/workflow-samples/no-wrapper
run: gradle help run: gradle help
gradle-versions: gradle-versions:
@ -71,7 +71,7 @@ jobs:
gradle-version: ${{ matrix.gradle }} gradle-version: ${{ matrix.gradle }}
- name: Run Gradle build - name: Run Gradle build
id: gradle id: gradle
working-directory: .github/workflows/samples/no-wrapper${{ matrix.build-root-suffix }} working-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}" run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
- name: Check build scan url - name: Check build scan url
if: ${{ !steps.gradle.outputs.build-scan-url }} if: ${{ !steps.gradle.outputs.build-scan-url }}

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -28,7 +28,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Build gradle-plugin project - name: Build gradle-plugin project
working-directory: .github/workflows/samples/gradle-plugin working-directory: .github/workflow-samples/gradle-plugin
run: ./gradlew build run: ./gradlew build
verify-build: verify-build:
@ -43,5 +43,5 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Build gradle-plugin project - name: Build gradle-plugin project
working-directory: .github/workflows/samples/gradle-plugin working-directory: .github/workflow-samples/gradle-plugin
run: ./gradlew build --offline run: ./gradlew build --offline

View file

@ -5,7 +5,7 @@ on:
types: [assigned, review_requested] types: [assigned, review_requested]
push: push:
paths: paths:
- '.github/workflows/**' - '.github/**'
- 'dist/**' - 'dist/**'
workflow_dispatch: workflow_dispatch:
@ -28,7 +28,7 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Build kotlin-dsl project - name: Build kotlin-dsl project
working-directory: .github/workflows/samples/kotlin-dsl working-directory: .github/workflow-samples/kotlin-dsl
run: ./gradlew build run: ./gradlew build
verify-build: verify-build:
@ -43,5 +43,5 @@ jobs:
- name: Setup Gradle - name: Setup Gradle
uses: ./ uses: ./
- name: Build kotlin-dsl project - name: Build kotlin-dsl project
working-directory: .github/workflows/samples/kotlin-dsl working-directory: .github/workflow-samples/kotlin-dsl
run: ./gradlew build --offline run: ./gradlew build --offline

View file

@ -12,7 +12,7 @@ jobs:
uses: ./ uses: ./
- name: Run build with Gradle wrapper - name: Run build with Gradle wrapper
id: gradle id: gradle
working-directory: .github/workflows/samples/kotlin-dsl working-directory: .github/workflow-samples/kotlin-dsl
run: ./gradlew build --scan run: ./gradlew build --scan
- name: "Add build scan URL as PR comment" - name: "Add build scan URL as PR comment"
uses: actions/github-script@v5 uses: actions/github-script@v5