diff --git a/.github/PklProject b/.github/PklProject index 2f2d8c2..e60cb85 100644 --- a/.github/PklProject +++ b/.github/PklProject @@ -18,7 +18,7 @@ amends "pkl:Project" dependencies { ["pkl.impl.ghactions"] { - uri = "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.1.6" + uri = "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.3.2" } ["com.github.actions"] { uri = "package://pkg.pkl-lang.org/pkl-pantry/com.github.actions@1.3.0" diff --git a/.github/PklProject.deps.json b/.github/PklProject.deps.json index 55d9361..9407119 100644 --- a/.github/PklProject.deps.json +++ b/.github/PklProject.deps.json @@ -10,9 +10,9 @@ }, "package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1": { "type": "remote", - "uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.1.6", + "uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@1.3.2", "checksums": { - "sha256": "efe36e694f45b0804c5fcc746774727c016c866478b8c1eb0ea86d00c8bd8cf2" + "sha256": "a04ff65fd6ef83a124cb1f26db9c8b544327ac398396974f80fa63cd76700561" } }, "package://pkg.pkl-lang.org/pkl-pantry/pkl.experimental.deepToTyped@1": { @@ -22,6 +22,13 @@ "sha256": "1e6e29b441ffdee2605d317f6543a4a604aab5af472b63f0c47d92a3b4b36f7f" } }, + "package://pkg.pkl-lang.org/pkl-pantry/pkl.github.dependabotManagedActions@1": { + "type": "remote", + "uri": "projectpackage://pkg.pkl-lang.org/pkl-pantry/pkl.github.dependabotManagedActions@1.0.0", + "checksums": { + "sha256": "ebc9698278d8aac71bb5a7e4d913c3bbb75d57e8e725f0298e346e36783f6ca2" + } + }, "package://pkg.pkl-lang.org/pkl-pantry/com.github.dependabot@1": { "type": "remote", "uri": "projectpackage://pkg.pkl-lang.org/pkl-pantry/com.github.dependabot@1.0.0", diff --git a/.github/workflows/prb.yml b/.github/workflows/prb.yml index b414adc..dd856dd 100644 --- a/.github/workflows/prb.yml +++ b/.github/workflows/prb.yml @@ -81,6 +81,8 @@ jobs: chmod +x $PKL_EXEC echo "$DIR" >> "$GITHUB_PATH" echo "pkl_exec=$PKL_EXEC" >> "$GITHUB_OUTPUT" + - shell: bash + run: rm -rf .github/**/[a-z]*.yml - shell: bash run: pkl eval -m .github/ --project-dir .github/ .github/index.pkl - name: check git status diff --git a/.github/workflows/test_report.yml b/.github/workflows/test_report.yml deleted file mode 100644 index cfc4f76..0000000 --- a/.github/workflows/test_report.yml +++ /dev/null @@ -1,36 +0,0 @@ -# Do not modify! -# This file was generated from a template using https://github.com/StefMa/pkl-gha - -name: PR Test Reports -'on': - workflow_run: - types: - - completed - workflows: - - Pull Request -permissions: - contents: read -jobs: - test-results: - name: Test Results - if: github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' - permissions: - actions: read - checks: write - runs-on: ubuntu-latest - steps: - - name: Download artifacts - uses: dawidd6/action-download-artifact@v11 - with: - path: artifacts - name: test-results-.* - name_is_regex: true - run_id: ${{ github.event.workflow_run.id }} - - name: Publish test results - uses: EnricoMi/publish-unit-test-result-action@v2 - with: - commit: ${{ github.event.workflow_run.head_sha }} - comment_mode: 'off' - files: artifacts/**/*.xml - event_file: artifacts/test-results-event-file/event.json - event_name: ${{ github.event.workflow_run.event }}