Skip to content

Commit

Permalink
explicit values for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ab-smith committed Dec 27, 2024
1 parent 5c21be5 commit d0ccdde
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backend-api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ env:

jobs:
test:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
backend-directory: ./backend

strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/backend-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ env:

jobs:
build:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
backend-directory: ./backend

services:
postgres:
image: postgres:${{ env.POSTGRES_VERSION }}
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres # test credential
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend-linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ env:

jobs:
ruff:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
working-directory: ./backend

strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/backend-migrations-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ env:

jobs:
migrations-check:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04

strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -60,12 +60,12 @@ jobs:
poetry run python manage.py makemigrations --check --dry-run --verbosity=3
enterprise-migrations-check:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04

strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-and-push-ee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build-and-push:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build-and-push:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ env:

jobs:
build:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
working-directory: ./frontend

strategy:
max-parallel: 4
matrix:
node-version: ["${{ env.NODE_VERSION }}"]
node-version: ["22"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend-linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ env:

jobs:
build:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
working-directory: ./frontend
PUBLIC_BACKEND_API_URL: "http://127.0.0.1:8000/api"

strategy:
max-parallel: 4
matrix:
node-version: ["${{ env.NODE_VERSION }}"]
node-version: ["22"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ env:

jobs:
build:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
working-directory: ./frontend

strategy:
max-parallel: 4
matrix:
node-version: ["${{ env.NODE_VERSION }}"]
node-version: ["22"]

steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ env:

jobs:
functional-tests:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04

services:
postgres:
image: postgres:${{ env.POSTGRES_VERSION }}
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres # test credential
Expand All @@ -40,7 +40,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]
playwright-browser: ["chromium"]

steps:
Expand Down Expand Up @@ -127,11 +127,11 @@ jobs:
retention-days: 5

enterprise-functional-tests:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04

services:
postgres:
image: postgres:${{ env.POSTGRES_VERSION }}
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand All @@ -145,7 +145,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]
playwright-browser: ["chromium"]

steps:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/startup-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ env:

jobs:
startup-functional-test:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04

services:
postgres:
image: postgres:${{ env.POSTGRES_VERSION }}
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand All @@ -34,7 +34,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
retention-days: 5

startup-docker-compose-test:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
COMPOSE_TEST: True
steps:
Expand Down Expand Up @@ -158,11 +158,11 @@ jobs:
fi
enterprise-startup-functional-test:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04

services:
postgres:
image: postgres:${{ env.POSTGRES_VERSION }}
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand All @@ -173,7 +173,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["${{ env.PYTHON_VERSION }}"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
retention-days: 5

enterprise-startup-docker-compose-test:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
env:
COMPOSE_TEST: True
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-change-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
build:
runs-on: ${{ env.UBUNTU_VERSION }}
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit d0ccdde

Please sign in to comment.