Skip to content

Commit dbf63e5

Browse files
committed
GH Actions: bump actions/checkout to v5 (was v4)
1 parent bb5101a commit dbf63e5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- '11'
1818
- '20'
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Install GoogleTest
2222
env:
2323
CPP_STANDARD: ${{ matrix.cpp-standard }}
@@ -49,7 +49,7 @@ jobs:
4949
- '11'
5050
- '20'
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
- name: Install GoogleTest
5454
env:
5555
CPP_STANDARD: ${{ matrix.cpp-standard }}
@@ -78,7 +78,7 @@ jobs:
7878
# This one is challenging:
7979
#
8080
# * It's impossible to run git clone inside this container (as old git will use ancient protocols not supported anymore
81-
# by GitHub, and also standard `actions/checkout@v4` will depend on Node.js/npm, which are not available in this container).
81+
# by GitHub, and also standard `actions/checkout@v5` will depend on Node.js/npm, which are not available in this container).
8282
# To work around this, we start/stop container manually and use targeted execution of specific build/run commands only
8383
# inside the container, keeping git and networking stuff out.
8484
#
@@ -93,7 +93,7 @@ jobs:
9393
linux_ubuntu_7_10:
9494
runs-on: ubuntu-latest
9595
steps:
96-
- uses: actions/checkout@v4
96+
- uses: actions/checkout@v5
9797
- name: docker pull
9898
run: |
9999
docker pull icomputer7/ancient-ubuntu-docker:gutsy
@@ -118,7 +118,7 @@ jobs:
118118
runs-on: windows-latest
119119
# NB: see https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md for what's available in this image
120120
steps:
121-
- uses: actions/checkout@v4
121+
- uses: actions/checkout@v5
122122
- name: restore
123123
run: |
124124
C:\vcpkg\bootstrap-vcpkg.bat
@@ -132,7 +132,7 @@ jobs:
132132
freebsd_14_2:
133133
runs-on: ubuntu-latest
134134
steps:
135-
- uses: actions/checkout@v4
135+
- uses: actions/checkout@v5
136136
- name: Run in FreeBSD
137137
uses: vmactions/freebsd-vm@v1
138138
with:
@@ -165,7 +165,7 @@ jobs:
165165
# c++ (nb3 20231008) 10.5.0
166166
# Copyright (C) 2020 Free Software Foundation, Inc.
167167
steps:
168-
- uses: actions/checkout@v4
168+
- uses: actions/checkout@v5
169169
- name: Run in NetBSD
170170
uses: vmactions/netbsd-vm@v1
171171
with:

0 commit comments

Comments
 (0)