Last active
November 29, 2024 07:17
-
-
Save krzema12/e88f192bbe75f9e5de123236442d202b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// No pinning - on each invocation, | |
// different action's revision may run. | |
@file:DependsOn("actions:checkout:v4") | |
// Pinning to a specific action's commit, | |
// but still different JARs can be used on | |
// each invocation. This is what is done for | |
// YAML-based workflows, and it's enough there. | |
@file:DependsOn("actions:checkout:11bd71901bbe5b1630ceea73d27597364c9af683") // v4.2.2 | |
// IMPOSSIBLE (yet): pinning to a specific JAR. | |
@file:DependsOn( | |
"actions:checkout:11bd71901bbe5b1630ceea73d27597364c9af683", | |
jarMd5="4dfebe6d43a1f3e082d166c26c60a154", | |
) // v4.2.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment