Skip to content

Commit d5598ff

Browse files
committed
ci: bump actions/checkout from v2 to v6
actions/checkout v2 runs on Node 12, which is end-of-life in GitHub Actions runners and emits a deprecation warning on every job. v6 is the current major release and runs on the actively supported Node runtime. The action is invoked with no inputs here, so no migration work beyond the version bump is needed. msys2/setup-msys2 is left at v2: that is still its current major version. Assisted-by: Claude:claude-opus-4-7
1 parent 4ea451e commit d5598ff

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Checks-out your repository under $GITHUB_WORKSPACE, so your job
1717
# can access it
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v6
1919

2020
- name: setup prerequisites
2121
shell: bash

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Checks-out your repository under $GITHUB_WORKSPACE, so your job
1717
# can access it
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v6
1919

2020
- name: setup prerequisites
2121
shell: bash

.github/workflows/msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
run:
99
shell: msys2 {0}
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v6
1212
- uses: msys2/setup-msys2@v2
1313
with:
1414
msystem: MINGW64

0 commit comments

Comments
 (0)