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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run Ruff
# ruff-action has v4.1.0 / v4.0.0 tags, not a floating v4 major.
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Lint Dockerfile
run: docker run --rm -i hadolint/hadolint < Dockerfile
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Lint OpenAPI
run: make spectral
Expand All @@ -67,7 +67,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Get Python version from Dockerfile
id: get-version
Expand All @@ -84,7 +84,7 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ steps.get-version.outputs.version }}
cache: "pip"
Expand All @@ -107,7 +107,7 @@ jobs:
timeout-minutes: 30
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Execute smoke test
run: make smoke
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository at triggering commit
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.workflow_run.head_sha }}

Expand Down