Skip to content

Commit cb5a880

Browse files
authored
Merge pull request #3566 from jamulussoftware/dependabot/github_actions/actions/checkout-6
Build: Bump actions/checkout from 4 to 6
2 parents 53e0395 + 9eb1f64 commit cb5a880

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@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' }}

.github/workflows/bump-dependencies.yml

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

.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@v4
16+
- uses: actions/checkout@v6
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@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:
@@ -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@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
@@ -56,7 +56,7 @@ jobs:
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

.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@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)"

.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@v4
22+
- uses: actions/checkout@v6
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@v4
54+
- uses: actions/checkout@v6
5555
- env:
5656
pr_branch: ${{ github.event.pull_request.head.ref }}
5757
run: |

0 commit comments

Comments
 (0)