Skip to content
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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
echo "React Native version is: ${{ env.rn_version }}"

- name: Create Release
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
github-token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} # Use custom token to trigger following workflows
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
echo "React Native version is: ${{ env.rn_version }}"

- name: Create tag
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
github-token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} # Use custom token to trigger following workflows
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

# Authenticate Cloud SDK
- id: 'auth'
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
credentials_json: ${{ secrets.GCP_CREDENTIALS }}

Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
uses: actions/checkout@v6
with:
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

- name: Check if React Native SDK requires update
Expand Down Expand Up @@ -57,13 +56,13 @@ jobs:
bash .github/scripts/update.sh ${{ github.event.inputs.increment }}

- name: Commit & Push changes
uses: actions-js/push@master
uses: stefanzweifel/git-auto-commit-action@v6
with:
author_email: ${{ secrets.AUTHOR_EMAIL }}
author_name: ${{ secrets.AUTHOR_NAME }}
branch: ${{ github.ref }}
github_token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
message: "Update Native SDKs and increment ${{ github.event.inputs.increment }} version"
commit_user_email: ${{ secrets.AUTHOR_EMAIL }}
commit_user_name: ${{ secrets.AUTHOR_NAME }}
commit_author: ${{ secrets.AUTHOR_NAME }} <${{ secrets.AUTHOR_EMAIL }}>
branch: ${{ github.ref_name }}
commit_message: "Update Native SDKs and increment ${{ github.event.inputs.increment }} version."

- name: Trigger Tag
run: |
Expand Down
Loading