From 20f5cd36180e77b139274809f2cbdf88a4961121 Mon Sep 17 00:00:00 2001 From: Andrea Giacobino Date: Wed, 20 Mar 2024 23:15:18 +0100 Subject: [PATCH 1/2] use bare-metal to verify the runtime overrides --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9ff33f..0e74f68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,7 +72,8 @@ jobs: check-tracing-runtime: name: "Check tracing runtime" if: github.event.pull_request.draft == false - runs-on: ubuntu-latest + runs-on: + labels: bare-metal needs: ["list-spec-versions"] strategy: matrix: From dc26828aad64dc8902a838d1f67ef83c4e9e570d Mon Sep 17 00:00:00 2001 From: Andrea Giacobino Date: Wed, 20 Mar 2024 23:18:40 +0100 Subject: [PATCH 2/2] add dependabot config to check for outdated github actions --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..9c312e1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + # Enable version updates for github-actions + - package-ecosystem: "github-actions" + # Look for a `Dockerfile` in the `root` directory + directory: "/" + # Check for updates once a month + schedule: + interval: "monthly"