Skip to content
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install poetry
run: pipx install poetry
Expand All @@ -51,7 +51,7 @@ jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install poetry
run: pipx install poetry
Expand All @@ -78,15 +78,15 @@ jobs:
test-compose:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: docker compose build
- run: docker compose down -v --remove-orphans
- run: docker compose up -d

test-local-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -112,7 +112,7 @@ jobs:
run: poetry run coverage html

- name: Upload code coverage report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: codecoverage-${{ github.sha }}
path: htmlcov/
Expand All @@ -139,7 +139,7 @@ jobs:
security-events: write
actions: read
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}

- name: Upload SBOM & License
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: sbom-licence-${{ github.sha }}.json
path: |
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
run: |
echo "tags: ${{ steps.meta.outputs.tags }}"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Trigger deployment
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
exit 1
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: 'minbzk/ai-validation-infra'
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
file_contents: ${{ steps.sync.outputs.file_contents }}
sync_exit_code: ${{ steps.sync.outputs.sync_exit_code }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install poetry
run: pipx install poetry
Expand Down
Loading