Skip to content

Commit

Permalink
Merge pull request #191 from patrikspiess/Node.js-deprecation-warning…
Browse files Browse the repository at this point in the history
…-#189

Node.js deprecation warning #189
  • Loading branch information
lucmurer committed Feb 26, 2024
2 parents dd7b952 + a494136 commit 8918382
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-github-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: actions/create-release@latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Build and publish fotoobo distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install poetry
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# cache: poetry
Expand All @@ -26,9 +26,9 @@ jobs:
run: |
poetry run tox -e mypy -- -- --junit-xml mypy.xml
- name: Upload mypy report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mypy report
name: mypy-report-${{ matrix.python-version }}
path: mypy.xml
- name: Check formatting with black
run: |
Expand Down
1 change: 1 addition & 0 deletions WHATSNEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Changed

- `fmg get devices` also shows ha nodes if device is a cluster
- Updated GitHub actions to latest major version due to Node.js 16 deprecation warning

### Fixed

Expand Down

0 comments on commit 8918382

Please sign in to comment.