Skip to content

Commit 75a1937

Browse files
committed
ci: update ci versions
1 parent fd00ba5 commit 75a1937

File tree

2 files changed

+13
-17
lines changed

2 files changed

+13
-17
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
cache_reset_counter:
3030
- 0
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333
with:
3434
submodules: true
3535

3636
- name: Cache
37-
uses: actions/cache@v2
37+
uses: actions/cache@v3
3838
with:
3939
path: |
4040
~/.pnpm-store
@@ -44,7 +44,7 @@ jobs:
4444
"setupcpp-cache-OS:${{ matrix.os }}-"
4545
4646
- name: Setup Node
47-
uses: actions/setup-node@v2
47+
uses: actions/setup-node@v3
4848
with:
4949
node-version: ${{ matrix.node }}
5050

@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: Upload Executable
6767
if: "contains(matrix.os, 'windows-2022') || contains(matrix.os, 'ubuntu-20.04') || contains(matrix.os, 'macos-11')"
68-
uses: actions/upload-artifact@v2
68+
uses: actions/upload-artifact@v3
6969
with:
7070
path: |
7171
./exe
@@ -101,12 +101,12 @@ jobs:
101101
cache_reset_counter:
102102
- 0
103103
steps:
104-
- uses: actions/checkout@v2
104+
- uses: actions/checkout@v3
105105
with:
106106
submodules: true
107107

108108
- name: Cache
109-
uses: actions/cache@v2
109+
uses: actions/cache@v3
110110
with:
111111
path: |
112112
~/.pnpm-store
@@ -115,7 +115,7 @@ jobs:
115115
restore-keys: |
116116
"setupcpp-docker-cache-OS:${{ matrix.os }}"
117117
- name: Setup Node
118-
uses: actions/setup-node@v2
118+
uses: actions/setup-node@v3
119119
with:
120120
node-version: ${{ matrix.node }}
121121

@@ -132,5 +132,3 @@ jobs:
132132
id: docker_build
133133
run: |
134134
docker build -f ./dev/docker/${{ matrix.container }} -t setup_cpp .
135-
env:
136-
ACTIONS_ALLOW_UNSECURE_COMMANDS: true

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ jobs:
120120
matrix:
121121
os:
122122
- windows-2022
123-
- ubuntu-20.04
124-
- macos-11
123+
- ubuntu-22.04
124+
- macos-12
125125
compiler:
126126
- llvm
127127
- gcc
@@ -130,9 +130,9 @@ jobs:
130130
- os: "windows-2022"
131131
compiler: "msvc"
132132
steps:
133-
- uses: actions/checkout@v2
133+
- uses: actions/checkout@v3
134134
- name: Cache
135-
uses: actions/cache@v2
135+
uses: actions/cache@v3
136136
with:
137137
path: |
138138
~/vcpkg
@@ -224,15 +224,13 @@ jobs:
224224
strategy:
225225
matrix:
226226
os:
227-
- ubuntu-20.04
227+
- ubuntu-22.04
228228
steps:
229-
- uses: actions/checkout@v2
229+
- uses: actions/checkout@v3
230230
- name: Build
231231
id: docker_build
232232
run: |
233233
docker build -f ./dev/docker/debian.dockerfile -t setup_cpp .
234-
env:
235-
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
236234
```
237235
238236
### Inside GitLab pipelines

0 commit comments

Comments
 (0)