Skip to content

chore(sync) Syncing changes from dev to alpha #76

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

Open
wants to merge 14 commits into
base: alpha
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
14 commits
Select commit Hold shift + click to select a range
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/cancel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ github.token }}
workflow_id: test.yml
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: setup poetry
uses: abatilo/actions-poetry@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
- name: Setup Poetry
uses: snok/install-poetry@v1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: setup poetry
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.ref_name == 'dev'
steps:
- name: 💾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: alpha

Expand All @@ -21,7 +21,7 @@ jobs:
git reset --hard ${{github.ref_name}}

- name: 🆕 Create Pull Request
uses: peter-evans/[email protected].1
uses: peter-evans/[email protected].2
with:
labels: automated pr
branch: ${{github.ref_name}}
Expand All @@ -32,7 +32,7 @@ jobs:
if: github.ref_name == 'alpha'
steps:
- name: 💾 Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master

Expand All @@ -42,7 +42,7 @@ jobs:
git reset --hard ${{github.ref_name}}

- name: 🆕 Create Pull Request
uses: peter-evans/[email protected].1
uses: peter-evans/[email protected].2
with:
labels: automated pr
branch: ${{github.ref_name}}
Expand Down
Loading