Skip to content

Commit

Permalink
.github: switch from actions/checkout@v3 to actions/checkout@v4
Browse files Browse the repository at this point in the history
This fixes the following diagnostic warning:

  Node.js 16 actions are deprecated.
  Please update the following actions to use Node.js 20: actions/checkout@v3

Link: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
ldv-alt authored and solardiz committed May 6, 2024
1 parent fbf3822 commit e4d4e6c
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
whitespace-errors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: check
run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904

Expand All @@ -16,7 +16,7 @@ jobs:
CC: gcc-13
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -30,7 +30,7 @@ jobs:
CC: gcc-12
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -44,7 +44,7 @@ jobs:
CC: gcc-11
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -58,7 +58,7 @@ jobs:
CC: gcc-10
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -72,7 +72,7 @@ jobs:
CC: gcc
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -86,7 +86,7 @@ jobs:
CC: gcc-8
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -100,7 +100,7 @@ jobs:
CC: clang-15
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -114,7 +114,7 @@ jobs:
CC: clang-14
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -128,7 +128,7 @@ jobs:
CC: clang-13
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -142,7 +142,7 @@ jobs:
CC: clang-12
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -156,7 +156,7 @@ jobs:
CC: clang-11
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -170,7 +170,7 @@ jobs:
CC: clang
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -184,7 +184,7 @@ jobs:
CC: clang-9
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -198,7 +198,7 @@ jobs:
CC: clang-8
TARGET: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand Down

0 comments on commit e4d4e6c

Please sign in to comment.