Skip to content

Commit

Permalink
Merge branch 'master' into create-workflow-linter-pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomiguelino committed Jan 23, 2025
2 parents 89adbe9 + 40100b8 commit 79a194e
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ansible-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-balena-disk-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
board: ['pi1', 'pi2', 'pi3', 'pi4', 'pi5']
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
permissions:
contents: write
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-webview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
build-docker-image:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
board: ['pi1', 'pi2', 'pi3', 'pi4']
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yaml
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-24.04

permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
steps:
- name: Deploy to GitHub Pages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
board: ['pi1', 'pi2', 'pi3', 'pi4', 'pi4-64', 'pi5', 'x86']
python-version: ["3.11"]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Checkout
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
strategy:
matrix:
board: ['pi1', 'pi2', 'pi3', 'pi4', 'pi5']
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:

jobs:
run-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.11"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-openapi-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ on:

jobs:
generate-openapi-schema:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/javascript-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -32,4 +32,4 @@ jobs:
run: npm ci

- name: Run ESLint
run: npm run lint
run: npm run lint
2 changes: 1 addition & 1 deletion .github/workflows/python-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
run-python-linter:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.11"]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sbom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

js-sbom:
needs: run-tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
id-token: write
contents: read
Expand All @@ -41,7 +41,7 @@ jobs:

python-sbom:
needs: run-tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
id-token: write
contents: read
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cffi==1.14.4
configparser==4.0.2
cryptography==3.3.2
Cython==0.29.33
Django==4.2.17
Django==4.2.18
djangorestframework==3.15.2
django-dbbackup==4.2.1
drf-spectacular==0.27.2
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.viewer.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ certifi==2024.7.4
configparser==4.0.2
cryptography==3.3.2
Cython==0.29.33
Django==4.2.17
Django==4.2.18
django-dbbackup==4.2.1
drf-spectacular==0.27.2
future==0.18.3
Expand Down

0 comments on commit 79a194e

Please sign in to comment.