From 431b135924c24e37d4f27b588daa81e89669f0d5 Mon Sep 17 00:00:00 2001 From: Evgeny Parshutin Date: Wed, 14 Jan 2026 15:30:47 +0100 Subject: [PATCH 1/4] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index add39d3b..b2741e56 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,6 +3,6 @@ updates: - package-ecosystem: github-actions directory: / schedule: - interval: weekly + interval: dayly # Disable the steady stream of version updates for actions; only notify about security updates. open-pull-requests-limit: 0 From 9119e0638fcf886376dcd10c16878708d106fcdc Mon Sep 17 00:00:00 2001 From: Evgeny Parshutin Date: Wed, 14 Jan 2026 15:32:30 +0100 Subject: [PATCH 2/4] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b2741e56..8650a933 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,6 +3,6 @@ updates: - package-ecosystem: github-actions directory: / schedule: - interval: dayly + interval: daily # Disable the steady stream of version updates for actions; only notify about security updates. open-pull-requests-limit: 0 From 79c80b51b77720ad090af57650e64ad05b8aab25 Mon Sep 17 00:00:00 2001 From: Evgeny Parshutin Date: Wed, 14 Jan 2026 18:24:27 +0100 Subject: [PATCH 3/4] Update dependabot.yml --- .github/dependabot.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8650a933..253bcb76 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,5 +4,3 @@ updates: directory: / schedule: interval: daily - # Disable the steady stream of version updates for actions; only notify about security updates. - open-pull-requests-limit: 0 From a32cca238a90299ee2fd008e2e5514cc5720758c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jan 2026 17:25:12 +0000 Subject: [PATCH 4/4] build(deps): bump actions/checkout from 4.1.1 to 6.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...8e8c483db84b4bee98b60c0593521ed34d9990e8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 4 ++-- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/main.yml | 10 +++++----- .github/workflows/release.yml | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) mode change 100755 => 100644 .github/workflows/deploy-docs.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 90d81179..2d09334e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Initialize CodeQL uses: github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9 @@ -63,7 +63,7 @@ jobs: security-events: write steps: - name: Checkout repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Install clippy run: rustup component add clippy diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml old mode 100755 new mode 100644 index 2209c324..9062bb38 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cab6ed7f..59820c14 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: - os: macos-latest steps: - name: Checkout sources - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Setup Fortran compiler uses: fortran-lang/setup-fortran@8821f57b53846d35d62632eb51c60ac6c4bff4ce # v1.6.1 with: @@ -46,7 +46,7 @@ jobs: run: working-directory: rust steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - run: rustup component add rustfmt clippy - run: cargo fmt --all -- --check - run: cargo clippy @@ -55,7 +55,7 @@ jobs: name: Check Rust dependencies runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - uses: EmbarkStudios/cargo-deny-action@76cd80eb775d7bbbd2d80292136d74d39e1b4918 # v2.0.14 with: manifest-path: rust/Cargo.toml @@ -77,7 +77,7 @@ jobs: working-directory: rust shell: bash steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: submodules: recursive - run: rustup target add ${{ matrix.target }} @@ -107,7 +107,7 @@ jobs: working-directory: python steps: - name: Checkout sources - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Build and install ittapi package run: python -m pip install . - name: Run unit tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41427405..c1dc2e43 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - os: macos-latest steps: - name: Checkout sources - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Config environment if: runner.os == 'Linux' run: sudo apt-get update && sudo apt-get install gcc-multilib @@ -57,7 +57,7 @@ jobs: cibw_skip_args: "*-win32 *_i686 cp313-*" steps: - name: Checkout sources - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Install cibuildwheels run: python -m pip install cibuildwheel==2.20.0 - name: Build ittapi python wheels @@ -81,7 +81,7 @@ jobs: needs: [build, python_build] steps: - name: Checkout sources - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Create release id: create_release uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1.1.4