Skip to content

Commit

Permalink
worklows: Specify Python version, use more recent node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fordN committed Dec 7, 2023
1 parent bd19e7c commit 6df7c56
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
strategy:
matrix:
node-version: [16, 18]
node-version: [18, 19, 20]
system:
- os: ubuntu-22.04
runs-on: ${{ matrix.system.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
fail-fast: false
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/indexer-agent-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
registry: ghcr.io
username: ${{github.repository_owner}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build and push Indexer Agent image
id: docker_build
uses: docker/build-push-action@v2
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/indexer-cli-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
registry: ghcr.io
username: ${{github.repository_owner}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build and push Indexer CLI image
id: docker_build
uses: docker/build-push-action@v2
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/indexer-service-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
registry: ghcr.io
username: ${{github.repository_owner}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build and push Indexer Service image
id: docker_build
uses: docker/build-push-action@v2
Expand Down

0 comments on commit 6df7c56

Please sign in to comment.