Skip to content

Commit

Permalink
github: Upgrade GitHub actions that depend on deprecated Node.js vers…
Browse files Browse the repository at this point in the history
…ions (#634)

* github: Upgrade actions/checkout to v4

* github: Upgrade actions/setup-python to v5

* github: Upgrade Gr1N/setup-poetry to v9
  • Loading branch information
bkeryan authored Sep 10, 2024
1 parent 79df1b1 commit c60e5a8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
- ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
# The codegen scripts require Python 3.8 or later.
python-version: "3.8"
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "1.8.3"
- name: Check Poetry version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
- ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "1.8.3"
- name: Check Poetry version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report_test_results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download test results
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_system_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
timeout-minutes: 90
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Import DAQmx config
run: C:\nidaqmxconfig\targets\win64U\x64\msvc-14.0\release\nidaqmxconfig.exe --eraseconfig --import tests\max_config\nidaqmxMaxConfig.ini
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
fail-fast: false
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "1.8.3"
- name: Check Poetry version
Expand Down

0 comments on commit c60e5a8

Please sign in to comment.