17
17
- ' 11'
18
18
- ' 20'
19
19
steps :
20
- - uses : actions/checkout@v4
20
+ - uses : actions/checkout@v5
21
21
- name : Install GoogleTest
22
22
env :
23
23
CPP_STANDARD : ${{ matrix.cpp-standard }}
49
49
- ' 11'
50
50
- ' 20'
51
51
steps :
52
- - uses : actions/checkout@v4
52
+ - uses : actions/checkout@v5
53
53
- name : Install GoogleTest
54
54
env :
55
55
CPP_STANDARD : ${{ matrix.cpp-standard }}
78
78
# This one is challenging:
79
79
#
80
80
# * 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).
82
82
# To work around this, we start/stop container manually and use targeted execution of specific build/run commands only
83
83
# inside the container, keeping git and networking stuff out.
84
84
#
93
93
linux_ubuntu_7_10 :
94
94
runs-on : ubuntu-latest
95
95
steps :
96
- - uses : actions/checkout@v4
96
+ - uses : actions/checkout@v5
97
97
- name : docker pull
98
98
run : |
99
99
docker pull icomputer7/ancient-ubuntu-docker:gutsy
@@ -118,7 +118,7 @@ jobs:
118
118
runs-on : windows-latest
119
119
# NB: see https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md for what's available in this image
120
120
steps :
121
- - uses : actions/checkout@v4
121
+ - uses : actions/checkout@v5
122
122
- name : restore
123
123
run : |
124
124
C:\vcpkg\bootstrap-vcpkg.bat
@@ -132,7 +132,7 @@ jobs:
132
132
freebsd_14_2 :
133
133
runs-on : ubuntu-latest
134
134
steps :
135
- - uses : actions/checkout@v4
135
+ - uses : actions/checkout@v5
136
136
- name : Run in FreeBSD
137
137
uses : vmactions/freebsd-vm@v1
138
138
with :
@@ -165,7 +165,7 @@ jobs:
165
165
# c++ (nb3 20231008) 10.5.0
166
166
# Copyright (C) 2020 Free Software Foundation, Inc.
167
167
steps :
168
- - uses : actions/checkout@v4
168
+ - uses : actions/checkout@v5
169
169
- name : Run in NetBSD
170
170
uses : vmactions/netbsd-vm@v1
171
171
with :
0 commit comments