From cefa8b4dac5179d1dd16f46c2e505429d5010e37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 11:07:48 +0000 Subject: ci: Bump actions/checkout from 4 to 5 Bumps from 4 to 5. NOTE: This requires a minimum runner version of 2.327.1 which we seem to currently be on. Link: Release notes link: Changelog Link: Commits Signed-off-by: dependabot[bot] Signed-off-by: Andrew Clayton --- .github/workflows/check-whitespace.yaml | 2 +- .github/workflows/ci-dev-distro-compiler.yaml | 4 ++-- .github/workflows/ci.yml | 4 ++-- .github/workflows/clang-ast.yaml | 2 +- .github/workflows/unitctl.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-whitespace.yaml b/.github/workflows/check-whitespace.yaml index 75f0afe4..64f577a9 100644 --- a/.github/workflows/check-whitespace.yaml +++ b/.github/workflows/check-whitespace.yaml @@ -11,7 +11,7 @@ jobs: check-whitespace: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/ci-dev-distro-compiler.yaml b/.github/workflows/ci-dev-distro-compiler.yaml index c666df86..0df87af0 100644 --- a/.github/workflows/ci-dev-distro-compiler.yaml +++ b/.github/workflows/ci-dev-distro-compiler.yaml @@ -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: | @@ -137,7 +137,7 @@ jobs: apk add clang fi - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: configure unit CC=${{ matrix.compiler }} run: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da4a0cbd..3ac4943f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 }}' diff --git a/.github/workflows/clang-ast.yaml b/.github/workflows/clang-ast.yaml index 49f1c401..1895bec2 100644 --- a/.github/workflows/clang-ast.yaml +++ b/.github/workflows/clang-ast.yaml @@ -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: | diff --git a/.github/workflows/unitctl.yml b/.github/workflows/unitctl.yml index fd152d4e..bd55647a 100644 --- a/.github/workflows/unitctl.yml +++ b/.github/workflows/unitctl.yml @@ -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 }} @@ -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 }} -- cgit