File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7575 contents : write
7676 steps :
7777 - name : Checkout code
78- uses : actions/checkout@v6
78+ uses : actions/checkout@v7
7979
8080 - name : Determine release version, type and prerelease variables
8181 run : ./.github/autobuild/get_build_vars.py
@@ -308,7 +308,7 @@ jobs:
308308 git config --global --add safe.directory "${GITHUB_WORKSPACE}"
309309
310310 - name : Checkout code
311- uses : actions/checkout@v6
311+ uses : actions/checkout@v7
312312 with :
313313 # only Android needs the oboe submodule, so don't fetch it for other builds
314314 submodules : ${{ matrix.config.target_os == 'android' }}
Original file line number Diff line number Diff line change 8383 local_version_regex : (.*["\/])((?:ASIO-SDK|asiosdk)_[^"]+?)(".*|\.zip.*)
8484
8585 steps :
86- - uses : actions/checkout@v6
86+ - uses : actions/checkout@v7
8787 with :
8888 ssh-key : ${{ secrets.BUMP_DEPENDENCIES_SSH_DEPLOY_KEY || 'fail-due-to-missing-ssh-key-as-secret' }}
8989 fetch-depth : ' 0' # we create/compare new branches and therefore require full history
@@ -171,7 +171,7 @@ jobs:
171171 # This job runs via pull_request_target. Please check for any security
172172 # consequences when extending these steps:
173173 # https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
174- - uses : actions/checkout@v6
174+ - uses : actions/checkout@v7
175175 # this checks out the upstream `main` and not the PR branch; this is fine for us
176176 # as we just need a proper config for git/gh to work with.
177177 - env :
Original file line number Diff line number Diff line change 1313 check-json-rpc-docs :
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v6
16+ - uses : actions/checkout@v7
1717 - run : ./tools/generate_json_rpc_docs.py
1818 - run : |
1919 [[ -z "$(git status --porcelain=v1)" ]] && exit 0
Original file line number Diff line number Diff line change 3030 # The clangFormatVersion is based on Ubuntu current LTS (jammy at time of writing).
3131 runs-on : ubuntu-latest
3232 steps :
33- - uses : actions/checkout@v6
33+ - uses : actions/checkout@v7
3434 - name : Check .cpp/.h/.mm with clang-format
3535 uses : DoozyX/clang-format-lint-action@bcb4eb2cb0d707ee4f3e5cc3b456eb075f12cf73
3636 with :
4444 runs-on : ubuntu-latest
4545 # shellcheck is already pre-installed on ubuntu-latest
4646 steps :
47- - uses : actions/checkout@v6
47+ - uses : actions/checkout@v7
4848 - name : Check .sh with shellcheck
4949 run : find -name '*.sh' -not -path './libs/*' -exec shellcheck --shell=bash {} +
5050 - name : Install shfmt
5656 name : Verify Python coding style
5757 runs-on : ubuntu-latest
5858 steps :
59- - uses : actions/checkout@v6
59+ - uses : actions/checkout@v7
6060 - name : Install pylint
6161 run : pip install --user "pylint < 3.0"
6262 - name : Check Python files with pylint
Original file line number Diff line number Diff line change 2121 runs-on : ubuntu-latest
2222 steps :
2323 - name : Checkout Code
24- uses : actions/checkout@v6
24+ uses : actions/checkout@v7
2525 - name : " Check Windows installer translations"
2626 run : ./tools/check-wininstaller-translations.sh
2727 - name : " Check for duplicate hotkeys (will not fail)"
Original file line number Diff line number Diff line change 1919 pull-requests : write
2020 contents : write
2121 steps :
22- - uses : actions/checkout@v6
22+ - uses : actions/checkout@v7
2323 - run : ./tools/update-copyright-notices.sh
2424 - env :
2525 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5151 pull-requests : write
5252 contents : write
5353 steps :
54- - uses : actions/checkout@v6
54+ - uses : actions/checkout@v7
5555 - env :
5656 pr_branch : ${{ github.event.pull_request.head.ref }}
5757 run : |
You can’t perform that action at this time.
0 commit comments