From 977eee5f6e0abea22422728636d45d4bf2b6d606 Mon Sep 17 00:00:00 2001 From: "Paulo F. Oliveira" Date: Tue, 9 May 2023 01:42:25 +0100 Subject: [PATCH] Fix 3rd party licenses updater (action) (#202) * Act on CI results: fix as per what GitHub Actions is requesting Seems to have worked up until recently, but then it started breaking :shrug * Name the workflow a little better --- .github/workflows/update_3rd_party_licenses.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_3rd_party_licenses.yml b/.github/workflows/update_3rd_party_licenses.yml index 42ac4d4..86ce3ea 100644 --- a/.github/workflows/update_3rd_party_licenses.yml +++ b/.github/workflows/update_3rd_party_licenses.yml @@ -1,5 +1,5 @@ --- -name: update_3rd_party_licenses +name: Update 3rd party licenses (automation) on: schedule: @@ -17,3 +17,5 @@ jobs: node-version: '14' - run: ./.github/workflows/update_3rd_party_licenses.sh + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}