Skip to content

Commit 18a4ec8

Browse files
committed
ci: update deprecated action versions
actions/checkout v4 runs on Node.js 20, which GitHub deprecates in June 2026; move to v6. codeql-action moves to v4 and create-pull-request to v8 for the same reason.
1 parent 7d0de7c commit 18a4ec8

9 files changed

Lines changed: 13 additions & 13 deletions

.github/workflows/build-centos8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Set up Git repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: recursive
1515
- name: Build LTFS

.github/workflows/build-debian11.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Set up Git repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: recursive
1515
- name: Build LTFS

.github/workflows/build-debian12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Set up Git repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: recursive
1515
- name: Build LTFS

.github/workflows/build-fedora28.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Set up Git repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: recursive
1515
- name: Build LTFS

.github/workflows/build-ubuntu-bionic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Set up Git repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: recursive
1515
- name: Build LTFS

.github/workflows/build-ubuntu-focal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Set up Git repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: recursive
1515
- name: Build LTFS

.github/workflows/build-ubuntu-xeneal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Set up Git repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
submodules: recursive
1515
- name: Build LTFS

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v6
4343
with:
4444
submodules: recursive
4545

4646
# Initializes the CodeQL tools for scanning.
4747
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@v2
48+
uses: github/codeql-action/init@v4
4949
with:
5050
languages: ${{ matrix.language }}
5151
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
#- name: Autobuild
59-
# uses: github/codeql-action/autobuild@v2
59+
# uses: github/codeql-action/autobuild@v4
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 https://git.io/JvXDl
@@ -75,4 +75,4 @@ jobs:
7575
make
7676
7777
- name: Perform CodeQL Analysis
78-
uses: github/codeql-action/analyze@v2
78+
uses: github/codeql-action/analyze@v4

.github/workflows/update-uthash.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
submodules: recursive
2121
token: ${{ secrets.GITHUB_TOKEN }}
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Create Pull Request
3838
if: steps.check_changes.outputs.changed == 'true'
39-
uses: peter-evans/create-pull-request@v5
39+
uses: peter-evans/create-pull-request@v8
4040
with:
4141
commit-message: 'chore: update uthash.h from upstream'
4242
title: 'chore: update uthash.h from upstream'

0 commit comments

Comments
 (0)