From 2cbfad8cd140f6744ab356539889d1c771af6f73 Mon Sep 17 00:00:00 2001 From: duncdrum Date: Mon, 22 Jul 2024 20:02:34 +0200 Subject: [PATCH] fix(ci): update deps --- .github/dependabot.yml | 11 +++++++++++ .github/workflows/ci.yml | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..497241c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f85ff19..445fbbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: # SET UP AND DEPENDENCIES # Specifying the Java version and architecture - name: Set up JDK 11 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '11' distribution: 'temurin' @@ -74,7 +74,7 @@ jobs: run: grep -vq 'svrl:text' report-expanded.xml - name: Upload Schematron reports as artifact if validation fails - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: schematron-report