From 84ec84f4ac4a36e8c29bceb03e6109a7b72fbe1f Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 21 Jul 2023 14:30:25 -0400 Subject: [PATCH] roots.pem > cacerts.pem for actions --- .github/workflows/get-roots.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/get-roots.yml b/.github/workflows/get-roots.yml index 25ff95eb..b38e724a 100644 --- a/.github/workflows/get-roots.yml +++ b/.github/workflows/get-roots.yml @@ -21,14 +21,14 @@ jobs: fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - name: Check for updates - run: curl -o ./roots.pem -vvvv https://pki.goog/roots.pem + run: curl -o ./cacerts.pem -vvvv https://pki.goog/roots.pem - name: Commit file run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git add roots.pem - git diff --quiet && git diff --staged --quiet || git commit -am '[ci skip] Updated roots.pem' + git diff --quiet && git diff --staged --quiet || git commit -am '[ci skip] Updated cacerts.pem' - name: Push changes uses: ad-m/github-push-action@master