File tree Expand file tree Collapse file tree 6 files changed +11
-11
lines changed
Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 7575 contents : write
7676 steps :
7777 - name : Checkout code
78- uses : actions/checkout@v4
78+ uses : actions/checkout@v6
7979
8080 - name : Determine release version, type and prerelease variables
8181 run : ./.github/autobuild/get_build_vars.py
@@ -310,7 +310,7 @@ jobs:
310310 git config --global --add safe.directory "${GITHUB_WORKSPACE}"
311311
312312 - name : Checkout code
313- uses : actions/checkout@v4
313+ uses : actions/checkout@v6
314314 with :
315315 # only Android needs the oboe submodule, so don't fetch it for other builds
316316 submodules : ${{ matrix.config.target_os == 'android' }}
Original file line number Diff line number Diff line change 8383 local_version_regex : (.*["\/]asiosdk_)([^"]+?)(".*|\.zip.*)
8484
8585 steps :
86- - uses : actions/checkout@v4
86+ - uses : actions/checkout@v6
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@v4
174+ - uses : actions/checkout@v6
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@v4
16+ - uses : actions/checkout@v6
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@v4
33+ - uses : actions/checkout@v6
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@v4
47+ - uses : actions/checkout@v6
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@v4
59+ - uses : actions/checkout@v6
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@v4
24+ uses : actions/checkout@v6
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@v4
22+ - uses : actions/checkout@v6
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@v4
54+ - uses : actions/checkout@v6
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