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@v3
78+ uses : actions/checkout@v4
7979
8080 - name : Determine release version, type and prerelease variables
8181 run : ./.github/autobuild/get_build_vars.py
@@ -312,7 +312,7 @@ jobs:
312312 git config --global --add safe.directory "${GITHUB_WORKSPACE}"
313313
314314 - name : Checkout code
315- uses : actions/checkout@v3
315+ uses : actions/checkout@v4
316316 with :
317317 submodules : true
318318 fetch-depth : ${{ matrix.config.checkout_fetch_depth || '1' }}
Original file line number Diff line number Diff line change 8080 local_version_regex : (.*["\/]asiosdk_)([^"]+?)(".*|\.zip.*)
8181
8282 steps :
83- - uses : actions/checkout@v3
83+ - uses : actions/checkout@v4
8484 with :
8585 ssh-key : ${{ secrets.BUMP_DEPENDENCIES_SSH_DEPLOY_KEY || 'fail-due-to-missing-ssh-key-as-secret' }}
8686 fetch-depth : ' 0' # we create/compare new branches and therefore require full history
@@ -168,7 +168,7 @@ jobs:
168168 # This job runs via pull_request_target. Please check for any security
169169 # consequences when extending these steps:
170170 # https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
171- - uses : actions/checkout@v3
171+ - uses : actions/checkout@v4
172172 # this checks out the upstream `main` and not the PR branch; this is fine for us
173173 # as we just need a proper config for git/gh to work with.
174174 - 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@v3
16+ - uses : actions/checkout@v4
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@v3
33+ - uses : actions/checkout@v4
3434 - name : Check .cpp/.h/.mm with clang-format
3535 uses : DoozyX/clang-format-lint-action@11b773b1598aa4ae3b32f023701bca5201c3817d
3636 with :
4444 runs-on : ubuntu-latest
4545 # shellcheck is already pre-installed on ubuntu-latest
4646 steps :
47- - uses : actions/checkout@v3
47+ - uses : actions/checkout@v4
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@v3
59+ - uses : actions/checkout@v4
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@v3
24+ uses : actions/checkout@v4
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@v3
22+ - uses : actions/checkout@v4
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@v3
54+ - uses : actions/checkout@v4
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