Skip to content

Commit 60287a4

Browse files
authored
Merge pull request #3168 from jamulussoftware/dependabot/github_actions/actions/checkout-4
2 parents 10d16c1 + d911b0e commit 60287a4

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/autobuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
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' }}

.github/workflows/bump-dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
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:

.github/workflows/check-json-rpcs-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
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

.github/workflows/coding-style-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
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:
@@ -44,7 +44,7 @@ jobs:
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
@@ -56,7 +56,7 @@ jobs:
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

.github/workflows/translation-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
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)"

.github/workflows/update-copyright-notices.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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 }}
@@ -51,7 +51,7 @@ jobs:
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: |

0 commit comments

Comments
 (0)