skip: merge (6e1e63a1cb) [skip release]

This commit is contained in:
Renovate Bot 2024-02-07 11:55:23 +00:00
commit 2538fd8ea3

View file

@ -304,7 +304,7 @@ Generate and download a new private key for the app, adding the contents of the
Adjust your Renovate configuration file to specify the username of your bot. Adjust your Renovate configuration file to specify the username of your bot.
Going forward we will be using the [`tibdex/github-app-token` action](https://github.com/tibdex/github-app-token) in order to exchange the GitHub App certificate for an access token that Renovate can use. Going forward we will be using the [`actions/create-github-app-token` action](https://github.com/actions/create-github-app-token) in order to exchange the GitHub App certificate for an access token that Renovate can use.
The final workflow will look like this: The final workflow will look like this:
@ -321,10 +321,12 @@ jobs:
steps: steps:
- name: Get token - name: Get token
id: get_token id: get_token
uses: tibdex/github-app-token@v1 uses: actions/create-github-app-token@v1
with: with:
private_key: ${{ secrets.private_key }} private-key: ${{ secrets.private_key }}
app_id: ${{ secrets.app_id }} app-id: ${{ secrets.app_id }}
owner: ${{ github.repository_owner }}
repositories: 'repo1,repo2'
- name: Checkout - name: Checkout
uses: actions/checkout@v4.1.1 uses: actions/checkout@v4.1.1