Skip to content

Commit 65a3553

Browse files
committed
Update action versions
1 parent 654e059 commit 65a3553

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.github/workflows/build-test.yml

+14-13
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,14 @@ jobs:
2828
generator: "Visual Studio 17 2022"
2929
build_type: Debug
3030
build_tool_options: "-nologo -verbosity:minimal -maxcpucount:4 -p:CL_MPCount=4"
31-
- os: windows-2022
32-
cc: 'C:/mingw64/bin/gcc.exe'
33-
generator: 'MinGW Makefiles'
34-
build_type: Debug
31+
# - os: windows-2022
32+
# cc: 'C:/mingw64/bin/gcc.exe'
33+
# generator: 'MinGW Makefiles'
34+
# build_type: Debug
3535
steps:
36-
- uses: actions/checkout@v3
37-
- uses: actions/setup-python@v4
36+
# actions/checkout@v3, actions/setup-python@v4, actions/cache@v3
37+
- uses: actions/checkout@v4
38+
- uses: actions/setup-python@v5
3839
with:
3940
python-version: '3.x' # use latest Python 3.x
4041
- name: 'Add user site-packages to PATH'
@@ -48,12 +49,12 @@ jobs:
4849
run: |
4950
$python_base = python -m site --user-base
5051
Write-Output "$python_base\\bin" >> $GITHUB_PATH
51-
- uses: msys2/setup-msys2@v2
52-
if: runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
53-
with:
54-
update: false
55-
release: false
56-
install: make gcc
52+
# - uses: msys2/setup-msys2@v2
53+
#if: runner.os == 'Windows' && matrix.generator == 'MinGW Makefiles'
54+
# with:
55+
# update: false
56+
# release: false
57+
# install: make gcc
5758
- name: 'Install Conan C/C++ package manager'
5859
id: install_conan
5960
shell: bash
@@ -68,7 +69,7 @@ jobs:
6869
echo "conan_data=${conan_home}/p" >> $GITHUB_OUTPUT
6970
- name: 'Restore Conan cache'
7071
id: cache_conan
71-
uses: actions/cache@v3
72+
uses: actions/cache@v4
7273
with:
7374
key: conan | 1 | ${{runner.os}} | ${{matrix.cc}} | ${{matrix.build_type}}
7475
path: ${{ steps.install_conan.outputs.conan_data }}

0 commit comments

Comments
 (0)