Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace deprecated fork usage #1075

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
steps:
- name: Generate token
id: generate_token
uses: chanzuckerberg/github-app-token@v1.1.4
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.CZI_RELEASE_PLEASE_APP_ID }}
private_key: ${{ secrets.CZI_RELEASE_PLEASE_PK }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependabot_automerge.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Dependabot auto-approve
on:
on:
pull_request: {}

permissions:
Expand All @@ -14,7 +14,7 @@ jobs:
steps:
- name: Generate token
id: generate_token
uses: chanzuckerberg/github-app-token@v1.1.4
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.CZI_GITHUB_HELPER_APP_ID }}
private_key: ${{ secrets.CZI_GITHUB_HELPER_PK }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# For why we need to generate a token and not use the default
- name: Generate token
id: generate_token
uses: chanzuckerberg/github-app-token@v1.1.4
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.CZI_RELEASE_PLEASE_APP_ID }}
private_key: ${{ secrets.CZI_RELEASE_PLEASE_PK }}
Expand Down
8 changes: 4 additions & 4 deletions templates/templates/.github/workflows/fogg_ci.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Make improvements in fogg, so that everyone can benefit.
{{- $githubActionsCI := . }}

on:
on:
push:
merge_group:

Expand All @@ -22,7 +22,7 @@ jobs:
steps:
- name: Generate token
id: generate_token
uses: chanzuckerberg/github-app-token@v1.1.4
uses: tibdex/github-app-token@v2
with:
app_id: {{`${{ secrets.CZI_GITHUB_HELPER_APP_ID }}`}}
private_key: {{`${{ secrets.CZI_GITHUB_HELPER_PK }}`}}
Expand All @@ -35,7 +35,7 @@ jobs:
with:
path: ~/.fogg/cache
key: fogg-cache-{{`${{ hashFiles('**/.fogg-version') }}`}}
- run: make setup
- run: make setup
- run: |
mkdir -p ~/.ssh/
ssh-keyscan -H github.com >> ~/.ssh/known_hosts
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
steps:
- name: Generate token
id: generate_token
uses: chanzuckerberg/github-app-token@v1.1.4
uses: tibdex/github-app-token@v2
with:
app_id: {{`${{ secrets.CZI_GITHUB_HELPER_APP_ID }}`}}
private_key: {{`${{ secrets.CZI_GITHUB_HELPER_PK }}`}}
Expand Down
8 changes: 4 additions & 4 deletions testdata/github_actions/.github/workflows/fogg_ci.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions testdata/v2_full_yaml/.github/workflows/fogg_ci.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading