fix(deps): update module github.com/google/go-github/v64 to v67 #533
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.2.1' | |
jobs: | |
test_action_with_local: | |
name: Run the action with local version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 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@185e178d7751c856e042c4c4489537d407cdf9c0 # 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@185e178d7751c856e042c4c4489537d407cdf9c0 # 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/ |