From b23bd47f9e87dacbe02117b5ee42af41882f9cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Pich=C3=A9?= Date: Tue, 16 Jul 2024 05:42:24 -0400 Subject: [PATCH] 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!* --- .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 99203c2..b3991af 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"]' \ No newline at end of file