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/auto_rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ jobs:

# Build server
- name: setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: 3.8
python-version: "3.10"

- name: cache cargo
uses: actions/cache@v3
Expand All @@ -126,7 +126,9 @@ jobs:
run: python3 -m pip install pyoxidizer

- name: install poetry
uses: snok/install-poetry@v1
run: |
pipx install poetry
pipx inject poetry poetry-plugin-export

- name: build server
run: ./server/build_server.sh
Expand Down Expand Up @@ -187,7 +189,7 @@ jobs:
mac_certs_password: ${{ secrets.mac_certs_password }}

- name: upload artifacts to github actions
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: build-${{matrix.os}}
path: |
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: 3.8
- uses: actions/setup-node@v3
python-version: "3.10"
- uses: actions/setup-node@v6
with:
node-version: 16
cache: 'npm'
Expand All @@ -26,11 +26,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: 3.8
- uses: actions/setup-node@v3
python-version: "3.10"
- uses: actions/setup-node@v6
with:
node-version: 16
cache: 'npm'
Expand Down
Loading
Loading