Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/dev-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Docker Metadata App
id: app-meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: |
docker.io/${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Docker Metadata Agent
id: agent-meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: |
docker.io/${{ secrets.DOCKER_USERNAME }}/${{ env.AGENT_IMAGE_NAME }}
Expand All @@ -66,7 +66,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push app image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile.app
Expand All @@ -82,7 +82,7 @@ jobs:
dev.quenary.tugtainer.protected=true

- name: Build and push agent image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile.agent
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prod-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Docker Metadata App
id: app-meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: |
docker.io/${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Docker Metadata Agent
id: agent-meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: |
docker.io/${{ secrets.DOCKER_USERNAME }}/${{ env.AGENT_IMAGE_NAME }}
Expand All @@ -64,7 +64,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push app image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile.app
Expand All @@ -80,7 +80,7 @@ jobs:
dev.quenary.tugtainer.protected=true

- name: Build and push agent image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile.agent
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
working-directory: ./frontend

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v5

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20

Expand All @@ -33,23 +33,23 @@ jobs:
name: Run Backend Tests
runs-on: ubuntu-latest

defaults:
run:
working-directory: ./backend

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.13

- name: Setup uv
uses: astral-sh/setup-uv@v7
with:
python-version: 3.11
python-version: 3.13
activate-environment: true

- name: Install backend dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install dependencies
run: uv sync --locked

- name: Run pytest
run: pytest
run: python -m pytest
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 0

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20

Expand Down