mirror of
https://github.com/gradle/actions.git
synced 2025-08-19 07:21:28 +08:00
Instead of using 'dependency-graph-action' with some slightly better values, we now use 'dependency-graph' as the parameter name with a subset of the options available to 'setup-gradle'.
24 lines
502 B
YAML
24 lines
502 B
YAML
name: Test dependency-submission submit
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ['Test dependency-submission save']
|
|
types: [completed]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
env:
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
|
|
|
jobs:
|
|
dependency-submission-submit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
- name: Download and submit dependency graph
|
|
uses: ./dependency-submission
|
|
with:
|
|
dependency-graph: download-and-submit
|