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
2 changes: 1 addition & 1 deletion .github/workflows/check-whitespace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
check-whitespace:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-dev-distro-compiler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
fi
npm install -g node-gyp

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

- name: configure unit CC=${{ matrix.compiler }}
run: |
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
apk add clang
fi

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

- name: configure unit CC=${{ matrix.compiler }}
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
os: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

# Provides module, language version and testpath from build name
- name: Output build metadata
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
##

- name: Clone njs repository
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
repository: nginx/njs
ref: '${{ steps.metadata.outputs.njs_version }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-ast.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
[ -f "$f" ] && ln -sf "$f" /usr/lib/$(basename "$f") || true
done

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

- name: Checkout and build clang-ast
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
actions: read # Required for Claude to read CI results on PRs
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Extract version
id: version
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Extract version
id: version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/seccomp-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Pull test image
run: docker pull python:3.13-slim-trixie
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unitctl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
os: macos-latest
target: aarch64-apple-darwin
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- run: rustup update stable
- run: rustup target add ${{ matrix.target }}
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
target: x86_64-apple-darwin

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- run: rustup update stable
- run: rustup target add ${{ matrix.target }}
Expand Down
Loading