From 72e56ee3f919de5a2b99615a6b87ebaf0952ad6f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:05:54 +0000 Subject: [PATCH 1/2] chore(deps): bump antoniovazquezblanco/setup-ghidra from 2.1.2 to 2.1.3 Bumps [antoniovazquezblanco/setup-ghidra](https://github.com/antoniovazquezblanco/setup-ghidra) from 2.1.2 to 2.1.3. - [Release notes](https://github.com/antoniovazquezblanco/setup-ghidra/releases) - [Commits](https://github.com/antoniovazquezblanco/setup-ghidra/compare/v2.1.2...v2.1.3) --- updated-dependencies: - dependency-name: antoniovazquezblanco/setup-ghidra dependency-version: 2.1.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/copilot-setup-steps.yml | 2 +- .github/workflows/publish-ghidra.yml | 2 +- .github/workflows/test-ghidra.yml | 6 +++--- .github/workflows/test-headless.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 2414fa70..958014b0 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -59,7 +59,7 @@ jobs: - name: Install Ghidra # Sets GHIDRA_INSTALL_DIR for subsequent steps and the agent session. - uses: antoniovazquezblanco/setup-ghidra@v2.1.2 + uses: antoniovazquezblanco/setup-ghidra@v2.1.3 with: version: "latest" auth_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/publish-ghidra.yml b/.github/workflows/publish-ghidra.yml index cd945e5b..3ccd57b4 100644 --- a/.github/workflows/publish-ghidra.yml +++ b/.github/workflows/publish-ghidra.yml @@ -34,7 +34,7 @@ jobs: java-version: "21" distribution: "microsoft" - name: Install Ghidra 🐉 - uses: antoniovazquezblanco/setup-ghidra@v2.1.2 + uses: antoniovazquezblanco/setup-ghidra@v2.1.3 with: version: ${{ matrix.ghidra-version }} auth_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-ghidra.yml b/.github/workflows/test-ghidra.yml index 59a9fa2c..4311ddf7 100644 --- a/.github/workflows/test-ghidra.yml +++ b/.github/workflows/test-ghidra.yml @@ -40,7 +40,7 @@ jobs: distribution: "microsoft" - name: Install Ghidra 🐉 - uses: antoniovazquezblanco/setup-ghidra@v2.1.2 + uses: antoniovazquezblanco/setup-ghidra@v2.1.3 with: version: ${{ matrix.ghidra-version }} auth_token: ${{ secrets.GITHUB_TOKEN }} @@ -105,7 +105,7 @@ jobs: distribution: "microsoft" - name: Install Ghidra 🐉 - uses: antoniovazquezblanco/setup-ghidra@v2.1.2 + uses: antoniovazquezblanco/setup-ghidra@v2.1.3 with: version: "latest" auth_token: ${{ secrets.GITHUB_TOKEN }} @@ -156,7 +156,7 @@ jobs: queries: security-extended,security-and-quality - name: Install Ghidra 🐉 - uses: antoniovazquezblanco/setup-ghidra@v2.1.2 + uses: antoniovazquezblanco/setup-ghidra@v2.1.3 with: version: "latest" auth_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-headless.yml b/.github/workflows/test-headless.yml index b65ba32f..8d005654 100644 --- a/.github/workflows/test-headless.yml +++ b/.github/workflows/test-headless.yml @@ -63,7 +63,7 @@ jobs: python-version: "3.10" - name: Install Ghidra ${{ matrix.ghidra-version }} - uses: antoniovazquezblanco/setup-ghidra@v2.1.2 + uses: antoniovazquezblanco/setup-ghidra@v2.1.3 with: version: ${{ matrix.ghidra-version }} auth_token: ${{ secrets.GITHUB_TOKEN }} From ac9ec5e17fc0d93797413b485417bee567036209 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:05:58 +0000 Subject: [PATCH 2/2] chore(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/claude.yml | 2 +- .github/workflows/copilot-setup-steps.yml | 2 +- .github/workflows/publish-ghidra.yml | 2 +- .github/workflows/publish-pypi.yml | 2 +- .github/workflows/test-ghidra.yml | 6 +++--- .github/workflows/test-headless.yml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index e8222b64..a0c035cd 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -25,7 +25,7 @@ jobs: id-token: write steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 1 diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 2414fa70..608bb4ae 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -28,7 +28,7 @@ jobs: contents: read steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true diff --git a/.github/workflows/publish-ghidra.yml b/.github/workflows/publish-ghidra.yml index cd945e5b..85b24177 100644 --- a/.github/workflows/publish-ghidra.yml +++ b/.github/workflows/publish-ghidra.yml @@ -27,7 +27,7 @@ jobs: name: Build distribution 📦 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Java 🍵 uses: actions/setup-java@v5 with: diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index de4da990..e965c0c5 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -22,7 +22,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Fetch all history for setuptools_scm to determine version from git tags fetch-depth: 0 diff --git a/.github/workflows/test-ghidra.yml b/.github/workflows/test-ghidra.yml index 59a9fa2c..af0b5328 100644 --- a/.github/workflows/test-ghidra.yml +++ b/.github/workflows/test-ghidra.yml @@ -29,7 +29,7 @@ jobs: name: Test on Ghidra ${{ matrix.ghidra-version }} runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: lfs: true @@ -94,7 +94,7 @@ jobs: name: Lint and Check 🔍 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: lfs: true @@ -138,7 +138,7 @@ jobs: security-events: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: lfs: true diff --git a/.github/workflows/test-headless.yml b/.github/workflows/test-headless.yml index b65ba32f..1e7b0f51 100644 --- a/.github/workflows/test-headless.yml +++ b/.github/workflows/test-headless.yml @@ -47,7 +47,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true