mirror of
https://github.com/rizinorg/rizin
synced 2026-08-22 20:26:16 -04:00
build(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] <support@github.com>
This commit is contained in:
parent
cc06c1dedb
commit
f6ebc0af9d
11 changed files with 39 additions and 39 deletions
36
.github/workflows/ci.yml
vendored
36
.github/workflows/ci.yml
vendored
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
outputs:
|
||||
edited: ${{ steps.filter.outputs.edited }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: dorny/paths-filter@v4
|
||||
id: filter
|
||||
with:
|
||||
|
|
@ -189,7 +189,7 @@ jobs:
|
|||
- name: Show available memory on Linux
|
||||
if: contains(matrix.os, 'macos') != true && matrix.enabled
|
||||
run: free -h
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
if: matrix.enabled
|
||||
with:
|
||||
fetch-depth: 2
|
||||
|
|
@ -208,7 +208,7 @@ jobs:
|
|||
PIP_BREAK_SYSTEM_PACKAGES: 1
|
||||
- name: Checkout rzpipe
|
||||
if: matrix.enabled
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: rizinorg/rz-pipe
|
||||
path: test/rz-pipe
|
||||
|
|
@ -280,13 +280,13 @@ jobs:
|
|||
CC: ${{ matrix.compiler }}
|
||||
- name: Checkout our Testsuite Binaries
|
||||
if: matrix.enabled
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: rizinorg/rizin-testbins
|
||||
path: test/bins
|
||||
- name: Checkout fuzz targets # TODO: this can be removed as soon as the fuzztargets repo is public
|
||||
if: matrix.run_tests && matrix.enabled && (github.event_name != 'pull_request' || contains(github.event.pull_request.head.ref, 'fuzz'))
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
# Required for comparing the current branch to dev.
|
||||
fetch-depth: 2
|
||||
|
|
@ -552,7 +552,7 @@ jobs:
|
|||
run: sudo apt-get --assume-yes install python3-wheel python3-setuptools python3-pip
|
||||
- name: Install meson and ninja
|
||||
run: pip3 install --user meson ninja PyYAML
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Extract rizin version
|
||||
run: echo "version=$(python sys/version.py)" >> $GITHUB_OUTPUT
|
||||
id: extract_version
|
||||
|
|
@ -613,7 +613,7 @@ jobs:
|
|||
if: contains(github.head_ref, 'dist') || contains(github.head_ref, 'macos') || contains(github.head_ref, 'mac') || ((contains(github.ref, 'release-') || github.ref == 'refs/heads/stable') && github.event_name == 'push') || github.event_name == 'schedule'
|
||||
needs: [ build-and-test ]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 2
|
||||
- name: Install meson and ninja
|
||||
|
|
@ -655,7 +655,7 @@ jobs:
|
|||
meson_options: --default-library=shared -Dportable=true
|
||||
bits: 32
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install Inno Setup
|
||||
run: choco install innosetup
|
||||
- uses: actions/setup-python@v6
|
||||
|
|
@ -689,7 +689,7 @@ jobs:
|
|||
matrix:
|
||||
name: [ x86_64, arm, aarch64 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install pax wget unzip python3-wheel python3-setuptools python3-pip && pip3 install --user meson ninja
|
||||
- name: Compile with meson
|
||||
|
|
@ -714,7 +714,7 @@ jobs:
|
|||
if: contains(github.head_ref, 'dist') || contains(github.head_ref, 'cpp') || ((contains(github.ref, 'release-') || github.ref == 'refs/heads/stable') && github.event_name == 'push') || github.event_name == 'schedule'
|
||||
needs: [ build-and-test ]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install pax wget unzip python3-wheel python3-setuptools python3-pip
|
||||
- name: Install meson and ninja
|
||||
|
|
@ -740,7 +740,7 @@ jobs:
|
|||
if: contains(github.head_ref, 'dist') || ((contains(github.ref, 'release-') || github.ref == 'refs/heads/stable') && github.event_name == 'push') || github.event_name == 'schedule'
|
||||
needs: [ build-and-test ]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install pax wget unzip python3-wheel python3-setuptools python3-pip
|
||||
- name: Install meson and ninja
|
||||
|
|
@ -867,7 +867,7 @@ jobs:
|
|||
- name: clang_cl_x86
|
||||
bits: 32
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/setup-python@v6
|
||||
- name: Install pkg-config and cmake
|
||||
shell: pwsh
|
||||
|
|
@ -916,7 +916,7 @@ jobs:
|
|||
name: Test Rizin on RISC-V 64-bit inside QEMU
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
|
|
@ -947,7 +947,7 @@ jobs:
|
|||
name: Test Rizin on RISC-V 32-bit inside QEMU
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update -q
|
||||
|
|
@ -1013,7 +1013,7 @@ jobs:
|
|||
build-rzpipe,
|
||||
]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Extract rizin version
|
||||
run: echo "branch=$(python sys/version.py)" >> $GITHUB_OUTPUT
|
||||
id: extract_version
|
||||
|
|
@ -1057,7 +1057,7 @@ jobs:
|
|||
runs-on: ubuntu-24.04
|
||||
if: github.event_name == 'push' || (github.event_name == 'pull_request' && contains(github.head_ref, 'container'))
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install python3-wheel python3-setuptools python3-pip && pip3 install --user meson
|
||||
- name: Download subprojects
|
||||
|
|
@ -1093,7 +1093,7 @@ jobs:
|
|||
needs: [ build-and-test ]
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get --assume-yes update
|
||||
|
|
@ -1108,7 +1108,7 @@ jobs:
|
|||
- name: Meson setup
|
||||
run: meson setup build .github/subproject_test/
|
||||
- name: Checkout our Testsuite Binaries
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: rizinorg/rizin-testbins
|
||||
path: .github/subproject_teyt/subprojects/rizin/test/bins
|
||||
|
|
|
|||
2
.github/workflows/code-analysis.yml
vendored
2
.github/workflows/code-analysis.yml
vendored
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: Install meson and ninja
|
||||
run: |
|
||||
|
|
|
|||
2
.github/workflows/coverity-scan.yml
vendored
2
.github/workflows/coverity-scan.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
id: "determine-repo"
|
||||
run: echo "repo=${GITHUB_REPOSITORY}" >> $GITHUB_OUTPUT
|
||||
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Download Coverity Build Tool
|
||||
run: |
|
||||
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=rizinorg%2Frizin" -O cov-analysis-linux64.tar.gz
|
||||
|
|
|
|||
4
.github/workflows/get_real_pr_shas.yml
vendored
4
.github/workflows/get_real_pr_shas.yml
vendored
|
|
@ -22,7 +22,7 @@
|
|||
# needs: real_pr_shas
|
||||
# steps:
|
||||
# - name: Checkout repository
|
||||
# uses: actions/checkout@v6
|
||||
# uses: actions/checkout@v7
|
||||
# with:
|
||||
# fetch-depth: 0 # Full history needed for commit scanning
|
||||
# ```
|
||||
|
|
@ -62,7 +62,7 @@ jobs:
|
|||
output_msgs: ${{ steps.get_shas.outputs.COMMIT_MSGS }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
- id: get_shas
|
||||
run: |
|
||||
git fetch --no-tags --prune --no-recurse-submodules --depth=$((${{ github.event.pull_request.commits }} + 1)) origin ${{ github.event.pull_request.head.sha }}
|
||||
|
|
|
|||
2
.github/workflows/labeler.yml
vendored
2
.github/workflows/labeler.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
pull-requests: write
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/labeler@v6
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
|
|
|
|||
6
.github/workflows/leaks.yml
vendored
6
.github/workflows/leaks.yml
vendored
|
|
@ -42,7 +42,7 @@ jobs:
|
|||
LSAN_LOGS_DIR: /tmp/lsan_logs/
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 2
|
||||
|
||||
|
|
@ -62,7 +62,7 @@ jobs:
|
|||
PIP_BREAK_SYSTEM_PACKAGES: 1
|
||||
|
||||
- name: Checkout rzpipe
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: rizinorg/rz-pipe
|
||||
path: test/rz-pipe
|
||||
|
|
@ -94,7 +94,7 @@ jobs:
|
|||
ninja -C build install
|
||||
|
||||
- name: Checkout our Testsuite Binaries
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: rizinorg/rizin-testbins
|
||||
path: test/bins
|
||||
|
|
|
|||
14
.github/workflows/linter.yml
vendored
14
.github/workflows/linter.yml
vendored
|
|
@ -24,7 +24,7 @@ jobs:
|
|||
prettier: ${{ steps.filter.outputs.prettier }}
|
||||
python: ${{ steps.filter.outputs.python }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: dorny/paths-filter@v4
|
||||
id: filter
|
||||
with:
|
||||
|
|
@ -59,7 +59,7 @@ jobs:
|
|||
runs-on: ubuntu-24.04
|
||||
if: ${{ needs.changes.outputs.yaml == 'true' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install tools
|
||||
run: sudo apt-get install yamllint python3-yaml
|
||||
- name: Check YamlLint
|
||||
|
|
@ -76,7 +76,7 @@ jobs:
|
|||
if: ${{ needs.changes.outputs.bindgen-linter == 'true' }}
|
||||
steps:
|
||||
- name: Checkout rizin
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
path: rizin
|
||||
- name: Checkout rz-bindgen (stable)
|
||||
|
|
@ -108,7 +108,7 @@ jobs:
|
|||
if: ${{ needs.changes.outputs.clang-format == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: Install clang-format-20
|
||||
run: |
|
||||
|
|
@ -130,7 +130,7 @@ jobs:
|
|||
if: ${{ needs.changes.outputs.prettier == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: Install prettier
|
||||
run: |
|
||||
|
|
@ -146,7 +146,7 @@ jobs:
|
|||
if: ${{ needs.changes.outputs.python == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
|
||||
- name: Install pylint, black, isort
|
||||
run: pip install pylint black isort
|
||||
|
|
@ -165,6 +165,6 @@ jobs:
|
|||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
- name: REUSE Compliance Check
|
||||
uses: fsfe/reuse-action@v6
|
||||
|
|
|
|||
2
.github/workflows/man.yml
vendored
2
.github/workflows/man.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
mandoc:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install mandoc
|
||||
run: |
|
||||
sudo apt-get update
|
||||
|
|
|
|||
4
.github/workflows/muon.yml
vendored
4
.github/workflows/muon.yml
vendored
|
|
@ -40,7 +40,7 @@ jobs:
|
|||
name: ubuntu-muon
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get --assume-yes update
|
||||
|
|
@ -65,7 +65,7 @@ jobs:
|
|||
run: ninja -C build && sudo muon -C build install
|
||||
|
||||
- name: Checkout our Testsuite Binaries
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: rizinorg/rizin-testbins
|
||||
path: test/bins
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ jobs:
|
|||
name: rizin-shell-parser-tests
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: 18
|
||||
|
|
|
|||
4
.github/workflows/tcc.yml
vendored
4
.github/workflows/tcc.yml
vendored
|
|
@ -42,7 +42,7 @@ jobs:
|
|||
name: ubuntu-tcc-test
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- name: Checkout TinyCC repository
|
||||
run: |
|
||||
|
|
@ -78,7 +78,7 @@ jobs:
|
|||
sudo cp build/muon /usr/bin/muon
|
||||
|
||||
- name: Checkout our Testsuite Binaries
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
repository: rizinorg/rizin-testbins
|
||||
path: test/bins
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue