summaryrefslogtreecommitdiff
path: root/.github/workflows/code_style.yml
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2024-02-28 15:19:12 +0100
committerEven Rouault <even.rouault@spatialys.com>2024-03-04 22:10:05 +0100
commitb0ce41d3052866b7a22ce0233d558d5a4529ac99 (patch)
tree6a72f2f893d76079aa9e167c7f8153aff9e8852d /.github/workflows/code_style.yml
parent39e8c50a2f9bdcf36810ee3d41bcbf1cc78968ae (diff)
Update GitHub checkout action to latest version
This fixes lots of warnings like this one: The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to '.github/workflows/code_style.yml')
-rw-r--r--.github/workflows/code_style.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/code_style.yml b/.github/workflows/code_style.yml
index bd09e5e8..4d5db306 100644
--- a/.github/workflows/code_style.yml
+++ b/.github/workflows/code_style.yml
@@ -8,7 +8,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
with:
fetch-depth: 0