From aeef377d115dc5de5a6274300adf152a0af6bec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Pich=C3=A9?= Date: Mon, 29 Jul 2024 10:06:47 -0400 Subject: [PATCH] Target ubuntu-latest explicitely when running depency-review [DT-7006] (#133) feat: **Target ubuntu-latest directly when running dependency-review ** https://coveord.atlassian.net/browse/DT-7006 Summary of changes: - The `dependency-review` workflow now targets `ubuntu-latest` directly instead of using the default. We are changing the default value of the `dependency-review` action to target our self-hosted runners. Therefore, public repositories must be adjusted prior else they will not be able to run the workflow anymore. *You should adjust and merge this pull request yourself if you're OK with it. Feel free to comment if there's an issue!* --- .github/workflows/dependency-review.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 0f01699..f2b9924 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -16,3 +16,4 @@ jobs: with: public: true distributed: true + runs-on: '["ubuntu-latest"]'