From 4278de478ef891942685d0e49170dffa47add8d1 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Wed, 21 Jun 2023 00:35:35 +0200 Subject: [PATCH] ci: use secrets.token --- .github/workflows/renovate-app-version.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/renovate-app-version.yml b/.github/workflows/renovate-app-version.yml index 5f3dcb7a..0028ef3d 100644 --- a/.github/workflows/renovate-app-version.yml +++ b/.github/workflows/renovate-app-version.yml @@ -11,7 +11,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 with: - fetch-depth: 0 + token: ${{ secrets.GITHUB_TOKEN }} - name: Configure repo run: | @@ -36,4 +36,4 @@ jobs: - name: Commit & Push Changes run: | - git add "apps/*/config.json" && git commit -m "chore: update config.json version [ready]" --no-edit --no-verify && git push || true + git add "apps/*/config.json" && git commit -m "chore: update config.json version [ready]" --no-verify && git push || true