Skip to content

Commit

Permalink
Upgrade NodeJS actions to Node20 (#9)
Browse files Browse the repository at this point in the history
* Remove poetry-core version specs

* Update Node actions to >=Node20
  • Loading branch information
BAntonellini authored Jun 25, 2024
1 parent ba1b9f0 commit cc7817c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v4.0.0
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,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7
with:
fetch-depth: 2

- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5.1.0
with:
python-version: "3.10"

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

steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4.1.7

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5.1.0
with:
python-version: ${{ matrix.python }}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@ target-version = "py310"
max-complexity = 10

[build-system]
requires = ["poetry-core>=1.2.0<1.4.0"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit cc7817c

Please sign in to comment.