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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian.python:latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: build
run: |
scripts/build.sh -b ${{ matrix.buildtype }} -c ${{ matrix.compiler }} -x
Expand All @@ -40,7 +40,7 @@ jobs:
- arch: s390x
- arch: ppc64le
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: enable foreign arch
uses: dbhi/qus/action@main
- name: Login to GitHub Container Registry
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian:latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: build
run: |
scripts/build.sh -b release -c gcc libdbus
Expand All @@ -92,7 +92,7 @@ jobs:
image: ghcr.io/linux-nvme/debian:latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: build
run: |
scripts/build.sh -b release -c gcc fallback
Expand All @@ -109,7 +109,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian:latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: build
run: |
scripts/build.sh -m muon
2 changes: 1 addition & 1 deletion .github/workflows/checkpatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- name: 'Calculate PR commits + 1'
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian.python:latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: build
run: |
scripts/build.sh coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian:latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: build
run: |
scripts/build.sh docs
4 changes: 2 additions & 2 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian.python:latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Allow workspace
run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
image: ghcr.io/linux-nvme/debian.python:latest
steps:
- name: Check out repository (with tags)
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Required for `git describe`

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
Loading