Skip to content

Commit

Permalink
CI version update (#61)
Browse files Browse the repository at this point in the history
* dependabot

* update python / nodejs version in ci
  • Loading branch information
lobis authored Aug 26, 2024
1 parent 08962b2 commit 6a61a2e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
groups:
actions:
patterns:
- '*'
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
platform: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]

runs-on: ${{ matrix.platform }}
timeout-minutes: 20
Expand All @@ -40,7 +40,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: "npm"
cache-dependency-path: bindings/nodejs/hvps/package-lock.json

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: 3.12

- name: Install dependencies
run: |
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: 'npm'
cache-dependency-path: bindings/nodejs/hvps/package-lock.json
registry-url: 'https://registry.npmjs.org'
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: 'npm'
cache-dependency-path: bindings/nodejs/nodered/package-lock.json
registry-url: 'https://registry.npmjs.org'
Expand All @@ -159,7 +159,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.12

- name: Run pre-commit to format files
run: |
Expand Down

0 comments on commit 6a61a2e

Please sign in to comment.