Skip to content

Commit

Permalink
chore: update actions to use latest releases to get out of node12 (#616)
Browse files Browse the repository at this point in the history
* chore: update actions to use latest releases to get out of node12

* chore: also update github actions versions in the sync-from-upstream workflow
  • Loading branch information
Ed⁦ authored Jan 6, 2023
1 parent 1acb09a commit 9b1d3fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-from-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}'
Expand Down

0 comments on commit 9b1d3fb

Please sign in to comment.