Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
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/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@v4
- uses: actions/checkout@v5
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 @@ -47,7 +47,7 @@ jobs:
fi
npm install -g node-gyp

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

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

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

- 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 @@ -66,7 +66,7 @@ jobs:
os: ubuntu-latest

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

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

- name: Clone njs repository
uses: actions/checkout@v4
uses: actions/checkout@v5
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 @@ -35,7 +35,7 @@ jobs:
ruby-dev openjdk-21-jdk npm
npm install -g node-gyp

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

- name: Checkout and build clang-ast
run: |
Expand Down
6 changes: 3 additions & 3 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@v4
- uses: actions/checkout@v5

- 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@v4
- uses: actions/checkout@v5

- run: rustup update stable
- run: rustup target add ${{ matrix.target }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
merge-multiple: true

Expand Down
Loading