Skip to content

Commit

Permalink
to remove warning for node 16 is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
Milstein committed Jul 31, 2024
1 parent c2a1ac4 commit df9358e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and setup git config
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
git config user.name 'github-actions[bot]' && git config user.email '[email protected]'
- name: Clean Build
run: |
mkdocs build --clean
- name: Clean Build
run: |
mkdocs build --clean
deploy:
name: Deploy Documentation
needs: build
Expand All @@ -57,7 +57,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and setup git config
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/precommit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '^3.10'

- name: Configure caching
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: precommit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down

0 comments on commit df9358e

Please sign in to comment.