build(deps): bump actions/checkout from 5 to 6 (#5550)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
f150e1859b
commit
c0ee406456
8 changed files with 31 additions and 31 deletions
32
.github/workflows/ci.yml
vendored
32
.github/workflows/ci.yml
vendored
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
outputs:
|
||||
edited: ${{ steps.filter.outputs.edited }}
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- uses: dorny/paths-filter@v3
|
||||
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@v5
|
||||
- uses: actions/checkout@v6
|
||||
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@v5
|
||||
uses: actions/checkout@v6
|
||||
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@v5
|
||||
uses: actions/checkout@v6
|
||||
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@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
repository: rizinorg/rizin-fuzztargets
|
||||
path: test/fuzz/targets
|
||||
|
|
@ -548,7 +548,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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Extract rizin version
|
||||
run: echo "version=$(python sys/version.py)" >> $GITHUB_OUTPUT
|
||||
id: extract_version
|
||||
|
|
@ -609,7 +609,7 @@ jobs:
|
|||
if: contains(github.head_ref, 'dist') || contains(github.head_ref, 'osx') || 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@v5
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 2
|
||||
- name: Install meson and ninja
|
||||
|
|
@ -649,7 +649,7 @@ jobs:
|
|||
meson_options: --default-library=shared -Dportable=true
|
||||
bits: 32
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Install Inno Setup
|
||||
run: choco install innosetup
|
||||
- uses: actions/setup-python@v6
|
||||
|
|
@ -683,7 +683,7 @@ jobs:
|
|||
matrix:
|
||||
name: [ x86_64, arm, aarch64 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- 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
|
||||
|
|
@ -708,7 +708,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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install pax wget unzip python3-wheel python3-setuptools python3-pip
|
||||
- name: Install meson and ninja
|
||||
|
|
@ -734,7 +734,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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install pax wget unzip python3-wheel python3-setuptools python3-pip
|
||||
- name: Install meson and ninja
|
||||
|
|
@ -862,7 +862,7 @@ jobs:
|
|||
- name: clang_cl_x86
|
||||
bits: 32
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/setup-python@v6
|
||||
- name: Install pkg-config and cmake
|
||||
shell: pwsh
|
||||
|
|
@ -924,7 +924,7 @@ jobs:
|
|||
build-rzpipe,
|
||||
]
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Extract rizin version
|
||||
run: echo "branch=$(python sys/version.py)" >> $GITHUB_OUTPUT
|
||||
id: extract_version
|
||||
|
|
@ -968,7 +968,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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install python3-wheel python3-setuptools python3-pip && pip3 install --user meson
|
||||
- name: Download subprojects
|
||||
|
|
@ -1004,7 +1004,7 @@ jobs:
|
|||
needs: [ build-and-test ]
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get --assume-yes update
|
||||
|
|
@ -1019,7 +1019,7 @@ jobs:
|
|||
- name: Meson setup
|
||||
run: meson setup build .github/subproject_test/
|
||||
- name: Checkout our Testsuite Binaries
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
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@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- 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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- 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
|
||||
|
|
|
|||
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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/labeler@v6
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
|
|
|
|||
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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- uses: dorny/paths-filter@v3
|
||||
id: filter
|
||||
with:
|
||||
|
|
@ -59,7 +59,7 @@ jobs:
|
|||
runs-on: ubuntu-24.04
|
||||
if: ${{ needs.changes.outputs.yaml == 'true' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@v6
|
||||
- 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@v5
|
||||
uses: actions/checkout@v6
|
||||
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@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install clang-format-20
|
||||
run: sudo apt --assume-yes install clang-format-20
|
||||
|
|
@ -128,7 +128,7 @@ jobs:
|
|||
if: ${{ needs.changes.outputs.prettier == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install prettier
|
||||
run: |
|
||||
|
|
@ -144,7 +144,7 @@ jobs:
|
|||
if: ${{ needs.changes.outputs.python == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Install pylint, black, isort
|
||||
run: pip install pylint black isort
|
||||
|
|
@ -163,6 +163,6 @@ jobs:
|
|||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
- name: REUSE Compliance Check
|
||||
uses: fsfe/reuse-action@v6
|
||||
|
|
|
|||
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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- 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@v5
|
||||
uses: actions/checkout@v6
|
||||
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@v5
|
||||
- uses: actions/checkout@v6
|
||||
- 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@v5
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- name: Checkout TinyCC repository
|
||||
run: |
|
||||
|
|
@ -74,7 +74,7 @@ jobs:
|
|||
sudo python3 setup.py install
|
||||
|
||||
- name: Checkout our Testsuite Binaries
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
repository: rizinorg/rizin-testbins
|
||||
path: test/bins
|
||||
|
|
|
|||
Loading…
Reference in a new issue