diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 380ab1a3c..a997fe070 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -23,10 +23,10 @@ jobs: steps: - name: Checkout Source Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set python version - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: '3.9' diff --git a/.github/workflows/sync-from-upstream.yml b/.github/workflows/sync-from-upstream.yml index 0998d4085..30cc7d444 100644 --- a/.github/workflows/sync-from-upstream.yml +++ b/.github/workflows/sync-from-upstream.yml @@ -37,13 +37,13 @@ jobs: branch: 'sync_upstream_${{steps.set_upstream.outputs.latest-release}}' # Checkout this repo into the branch - name: Checkout your local repo in PR branch - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: 'sync_upstream_${{steps.set_upstream.outputs.latest-release}}' # Sync this branch with upstream - name: Sync upstream changes into PR branch id: sync - uses: aormsby/Fork-Sync-With-Upstream-action@v3.2 + uses: aormsby/Fork-Sync-With-Upstream-action@v3.4 with: # target_sync_branch == the branch in your fork that you want to sync to upstream target_sync_branch: 'sync_upstream_${{steps.set_upstream.outputs.latest-release}}'