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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup python and uv
uses: astral-sh/setup-uv@v7
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup python and uv
Expand Down Expand Up @@ -52,12 +52,12 @@ jobs:
rm .staging-key

- name: Checkout ephios repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: ephios

- name: Checkout ansible repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: 'ephios-dev/ephios-ansible'
path: playbook
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
python-version: [ "3.14" ]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup python and uv
uses: astral-sh/setup-uv@v7
with:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
database_url: "psql://pytest:pass@127.0.0.1:5432"

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup python and uv
uses: astral-sh/setup-uv@v7
with:
Expand Down
Loading