Skip to content

Commit

Permalink
[IMP] Update CI to Node 20.
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax committed Feb 1, 2024
1 parent eb09d43 commit 76fcf06
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
should_run: ${{ steps.should_run.outputs.should_run }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: print latest_commit
run: echo ${{ github.sha }}

Expand All @@ -24,15 +24,20 @@ jobs:
linux:
needs: check_date
if: ${{ needs.check_date.outputs.should_run != 'false' }}
name: Build Debian Bookworm
name: Build for x86_64 Linux
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'

- name: Configure docker
run: |
echo '{ "experimental": true }' | sudo tee /etc/docker/daemon.json
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,20 @@ on:

jobs:
linux:
name: Build Debian Bookworm
name: Build for x86_64 Linux
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'

- name: Configure docker
run: |
echo '{ "experimental": true }' | sudo tee /etc/docker/daemon.json
Expand Down

0 comments on commit 76fcf06

Please sign in to comment.