fix(router-sdk): bump v4-sdk for ur2.1 revert (#474) #339
This file contains hidden or 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: "Push changes to beta and alpha branches" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| dev-branch-push: | |
| name: "Push to beta and alpha branches" | |
| environment: | |
| name: main | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: bullfrogsec/bullfrog@dcde5841b19b7ef693224207a7fdec67fce604db # v0.8.3 | |
| with: | |
| # List of IPs to allow outbound connections to. | |
| # By default, only localhost and IPs required for the essential operations of Github Actions are allowed. | |
| #allowed-ips: | | |
| # List of domains to allow outbound connections to. | |
| # Wildcards are accepted. For example, if allowing `*.google.com`, this will allow `www.google.com`, `console.cloud.google.com` but not `google.com`. | |
| # By default, only domains required for essential operations of Github Actions and uploading job summaries are allowed. | |
| # Refer to https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#communication-requirements-for-github-hosted-runners-and-github for additional domains that should be allowed for additional Github Actions features. | |
| #allowed-domains: | |
| # The egress policy to enforce. Valid values are `audit` and `block`. | |
| # Default: audit | |
| egress-policy: audit | |
| - uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | |
| with: | |
| token: ${{ secrets.SERVICE_ACCOUNT_PAT }} | |
| ref: main | |
| - name: Setup git | |
| run: | | |
| git config user.name "UL Mobile Service Account" | |
| git config user.email "[email protected]" | |
| - name: ↗️ Push to beta | |
| run: | | |
| git push -u origin main:beta --force |