Skip to content

fix(deps): update dependency nabeken/go-github-apps to v0.1.17 #433

fix(deps): update dependency nabeken/go-github-apps to v0.1.17

fix(deps): update dependency nabeken/go-github-apps to v0.1.17 #433

Workflow file for this run

name: Test Action
on:
pull_request:
push:
branches:
- master
tags:
- v0
env:
# renovate: datasource=github-releases depName=nabeken/go-github-apps
GO_GITHUB_APPS_VERSION: '0.1.17'
jobs:
test_action_with_local:
name: Run the action with local version
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Get GITHUB_TOKEN for Github Apps
uses: ./
id: go-github-apps
with:
installation_id: ${{ secrets.installation_id }}
app_id: ${{ secrets.app_id }}
private_key: ${{ secrets.private_key }}
- name: Test Github API call
run: |
curl --fail -H 'Authorization: token ${{ steps.go-github-apps.outputs.app_github_token }}' https://api.github.com/
test_action_with_version:
name: Run the action with the version
runs-on: ubuntu-latest
steps:
- name: Get GITHUB_TOKEN for Github Apps
uses: nabeken/go-github-apps@afd4a1da8d2eafaa6902580a943dc17dfd055ba9 # v0
id: go-github-apps
with:
installation_id: ${{ secrets.installation_id }}
app_id: ${{ secrets.app_id }}
private_key: ${{ secrets.private_key }}
version: '${{ env.GO_GITHUB_APPS_VERSION }}'
- name: Test Github API call
run: |
curl --fail -H 'Authorization: token ${{ steps.go-github-apps.outputs.app_github_token }}' https://api.github.com/
test_action_with_default:
name: Run the action with the default version
runs-on: ubuntu-latest
steps:
- name: Get GITHUB_TOKEN for Github Apps
uses: nabeken/go-github-apps@afd4a1da8d2eafaa6902580a943dc17dfd055ba9 # v0
id: go-github-apps
with:
installation_id: ${{ secrets.installation_id }}
app_id: ${{ secrets.app_id }}
private_key: ${{ secrets.private_key }}
- name: Test Github API call
run: |
curl --fail -H 'Authorization: token ${{ steps.go-github-apps.outputs.app_github_token }}' https://api.github.com/