Skip to content

Commit 47ed2d2

Browse files
authored
Merge pull request #2661 from ninja-build/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 3844671 + 2e71941 commit 47ed2d2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/linux-musl.yml

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

2929
steps:
3030
- name: Host - checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434
persist-credentials: false

.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container:
1515
image: fedora:40
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Install dependencies
1919
run: dnf install -y ninja-build cmake gtest-devel re2c clang util-linux clang-tools-extra
2020
- name: Linting
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ${{ matrix.host-os }}
5555
container: rockylinux/rockylinux:8
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858
- uses: codespell-project/actions-codespell@master
5959
with:
6060
ignore_words_list: fo,wee,addin,notin
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ${{ matrix.host-os }}
123123
container: ${{ matrix.image }}
124124
steps:
125-
- uses: actions/checkout@v4
125+
- uses: actions/checkout@v5
126126
- name: Install dependencies
127127
run: |
128128
apt update
@@ -180,7 +180,7 @@ jobs:
180180
runs-on: ${{ matrix.host-os }}
181181
container: ${{ matrix.image }}
182182
steps:
183-
- uses: actions/checkout@v4
183+
- uses: actions/checkout@v5
184184
with:
185185
persist-credentials: false #https://docs.zizmor.sh/audits/#artipacked
186186
- name: Install dependencies

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: macos-13
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- name: Install dependencies
1919
run: brew install re2c

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
suffix: 'arm64'
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Install dependencies
2828
run: choco install re2c

0 commit comments

Comments
 (0)