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/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@v4
- uses: actions/checkout@v5
- 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@v4
- uses: actions/checkout@v5
- name: enable foreign arch
uses: dbhi/qus/action@main
- name: Login to GitHub Container Registry
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
image: ghcr.io/linux-nvme/debian:latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: build
run: |
scripts/build.sh -b release -c gcc fallback
Expand All @@ -91,7 +91,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: build
run: |
scripts/build.sh -m muon
Expand All @@ -102,7 +102,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: build
run: |
make static
Expand All @@ -113,7 +113,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: build
run: |
scripts/build.sh distro
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@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

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

- name: Install build tools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian.python:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- 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 @@ -20,7 +20,7 @@ jobs:
container:
image: ghcr.io/linux-nvme/debian:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: build
run: |
scripts/build.sh docs
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@v4
- uses: actions/checkout@v5
- uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/run-nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.repository == 'linux-nvme/nvme-cli'
runs-on: arc-vm-nvme-cli
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: "linux-blktests/blktests-ci"
#We don't have to build the kernel here, as we have a cron job running on
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
VERSION: ${{ steps.build.outputs.VERSION }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
Loading