From 1951961e0bb1fd9b019b6b8f316c755a3acb81cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Pich=C3=A9?= Date: Tue, 16 Jul 2024 08:37:28 -0400 Subject: [PATCH] refactor(action): target ubuntu-latest explicitely when running depency-review [DT-7006] (#1479) 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 2126e7998c..54e4d95fd0 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -15,3 +15,4 @@ jobs: with: public: true distributed: true + runs-on: '["ubuntu-latest"]'