Skip to content

Commit

Permalink
chore: replace deprecated fork usage (#1075)
Browse files Browse the repository at this point in the history
  • Loading branch information
hspitzley-czi committed Jul 25, 2024
1 parent c3434c1 commit f3f3da8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
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.

0 comments on commit f3f3da8

Please sign in to comment.