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(deps): bump ad-m/github-push-action from 0.7.0 to 0.8.0 #121

Merged
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/create_tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: tag
run: git tag ${{ env.TAG }}
- name: Push changes
uses: ad-m/github-push-action@29f05e01bb17e6f28228b47437e03a7b69e1f9ef
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/k8s_manifest_manual.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
RUN_ID: ${{ github.run_id }}
LINK: ${{ env.SHORT_SHA }}
COMPARE_URL: https://github.com/${{ github.repository }}/compare/master...${{ env.SHORT_SHA }}
- uses: ad-m/github-push-action@29f05e01bb17e6f28228b47437e03a7b69e1f9ef
- uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
with:
github_token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
repository: ${{ env.REPO_MANIFEST }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/k8s_manifest_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
LINK: ${{ github.event.pull_request.number }}
SHA: ${{ github.sha }}
COMPARE_URL: https://github.com/${{ github.repository }}/compare/main...${{ github.event.after }}
- uses: ad-m/github-push-action@29f05e01bb17e6f28228b47437e03a7b69e1f9ef
- uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
with:
github_token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
repository: ${{ env.REPO_MANIFEST }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
git commit -m "feat: Update package.json to ${{ env.VERSION }}" -a
if: env.DRY_RUN == 'false' && env.CREATE_PR != 'true'
- name: Push changes
uses: ad-m/github-push-action@29f05e01bb17e6f28228b47437e03a7b69e1f9ef
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_package_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
run: git tag ${{ env.TAG }}
if: env.DRY_RUN == 'false'
- name: Push changes
uses: ad-m/github-push-action@29f05e01bb17e6f28228b47437e03a7b69e1f9ef
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
with:
github_token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }} # must use PAT to trigger other workflow
branch: ${{ github.ref }}
tags: true
if: env.DRY_RUN == 'false'
- name: Push changes (dry_run)
uses: ad-m/github-push-action@29f05e01bb17e6f28228b47437e03a7b69e1f9ef
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
with:
github_token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }} # must use PAT to trigger other workflow
branch: ${{ env.DRY_RUN_BRANCH_PREFIX }}-${{ env.TAG }}
Expand Down
Loading