From fa508a70f25ff2c536d490abf20b4901ea8df877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Pich=C3=A9?= Date: Tue, 16 Jul 2024 07:17:28 -0400 Subject: [PATCH] Target ubuntu-latest explicitely when running depency-review [DT-7006] (#341) * Target ubuntu-latest explicitely when running depency-review [DT-7006] 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!* * lint --------- Co-authored-by: Alex Prudhomme <78121423+alexprudhomme@users.noreply.github.com> --- .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 5c5c7a52..d749da64 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"]'