Bump pkl.impl.ghactions to version 1.8.1 (#1668)

Updates pkl.impl.ghactions package to version 1.8.1
This commit is contained in:
Daniel Chao
2026-06-09 00:28:22 -07:00
committed by GitHub
parent 391329c1fa
commit 16a640ed80
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ amends "pkl:Project"
dependencies { dependencies {
["pkl.impl.ghactions"] { ["pkl.impl.ghactions"] {
uri = "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.0" uri = "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.1"
} }
["gha"] { ["gha"] {
uri = "package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.4.0" uri = "package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.4.0"
+2 -2
View File
@@ -10,9 +10,9 @@
}, },
"package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1": { "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1": {
"type": "remote", "type": "remote",
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.0", "uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.8.1",
"checksums": { "checksums": {
"sha256": "04a5da66418b3be277476b13c2c34cd5538d9bcd11de054ba1d3116d21f95b30" "sha256": "476cd931de6868b3f5e088ac741261d7beb9f4de3305564675510fd74ffb83f3"
} }
}, },
"package://pkg.pkl-lang.org/pkl-pantry/pkl.experimental.deepToTyped@1": { "package://pkg.pkl-lang.org/pkl-pantry/pkl.experimental.deepToTyped@1": {
+6 -2
View File
@@ -825,7 +825,7 @@ jobs:
path: '**/build/reports/tests/**/*' path: '**/build/reports/tests/**/*'
if-no-files-found: ignore if-no-files-found: ignore
verdict: verdict:
if: '!cancelled() && !failure()' if: always()
needs: needs:
- check-pkl-github-actions - check-pkl-github-actions
- gradle-check - gradle-check
@@ -844,7 +844,11 @@ jobs:
- pkl-doc-windows-amd64-snapshot - pkl-doc-windows-amd64-snapshot
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: 'true' - name: Failure verdict
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: |-
echo "Some of the required jobs are either failing or were cancelled"
exit 1
upload-event-file: upload-event-file:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: