Skip to content

Commit 8a6b300

Browse files
committed
Upgrade Github Actions checkout and cache
1 parent cd2685a commit 8a6b300

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-22.04
88
steps:
99
- name: Set-up repository
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v4
1111
- name: Install environment
1212
run: |
1313
sudo apt install -y clang-format
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.platform }}
2323
steps:
2424
- name: Set-up repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626
# NOTE: CI can't execute end2end tests because there is no way to run
2727
# Memgraph on CI MacOS machines.
2828
- name: Build and test mgclient
@@ -46,9 +46,9 @@ jobs:
4646
deps: "openssl:x64-windows"
4747
steps:
4848
- name: Set-up repository
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v4
5050
- name: Restore vcpkg and its artifacts
51-
uses: actions/cache@v3
51+
uses: actions/cache@v4
5252
id: vcpkg-cache
5353
with:
5454
path: ${{ env.VCPKG_ROOT }}
@@ -84,13 +84,13 @@ jobs:
8484
runs-on: ${{ matrix.platform }}
8585
steps:
8686
- name: Set-up repository
87-
uses: actions/checkout@v1
87+
uses: actions/checkout@v4
8888
- name: Install environment
8989
run: |
9090
sudo apt install -y ${{ matrix.packages }}
9191
- name: Cache Memgraph Docker image
9292
id: cache-memgraph-docker
93-
uses: actions/cache@v1
93+
uses: actions/cache@v4
9494
with:
9595
path: ~/memgraph
9696
key: cache-memgraph-v${{ matrix.mgversion }}-docker-image
@@ -137,7 +137,7 @@ jobs:
137137
shell: msys2 {0}
138138
steps:
139139
- name: Set-up repository
140-
uses: actions/checkout@v2
140+
uses: actions/checkout@v4
141141
- uses: msys2/setup-msys2@v2
142142
with:
143143
msystem: ${{ matrix.msystem }}
@@ -170,7 +170,7 @@ jobs:
170170
runs-on: ${{ matrix.platform }}
171171
steps:
172172
- name: Set-up repository
173-
uses: actions/checkout@v2
173+
uses: actions/checkout@v4
174174

175175
- name: Build with clang
176176
run: |

0 commit comments

Comments
 (0)