From 5be187362f7e6885ff47bf1abd083cf9917de8e9 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 3 Feb 2021 18:06:18 +0100 Subject: [PATCH] workflows/pub-score: Remove container hack This hack was necessary to use custom credentials, but this is not needed anymore, so we can use the regular action. Signed-off-by: Leandro Lucarella --- .github/workflows/pub-score.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pub-score.yml b/.github/workflows/pub-score.yml index 6bca156..f50b3ef 100644 --- a/.github/workflows/pub-score.yml +++ b/.github/workflows/pub-score.yml @@ -8,15 +8,14 @@ on: jobs: pub-score: runs-on: ubuntu-latest - container: axelop/dart_package_analyzer:v3 steps: - uses: actions/checkout@v2 - name: Dart Package Analyzer + uses: axel-op/dart-package-analyzer@v3 id: score - env: - INPUT_GITHUBTOKEN: ${{ github.token }} - run: /dart_package_analyzer + with: + githubToken: ${{ github.token }} - name: Check score env: