Skip to content

Commit 1246723

Browse files
committed
CI: fix github actions versions
1 parent fde252f commit 1246723

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Build on ${{ matrix.os }}
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v6
1414
- name: Autogen
1515
run: ./autogen.sh
1616
- name: Configure
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup MariaDB Libs
3737
run: sudo apt install libmariadb-dev libmariadb-dev-compat
3838
- name: Checkout
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v6
4040
- name: Autogen
4141
run: ./autogen.sh
4242
- name: Configure

.github/workflows/cmake-single-os.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
continue-on-error: true
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v6
1818

1919

2020
# On Windows, use vcpkg to build, as pgsql driver on build box is bad (crashes during tests)
2121
- name: vcpkg_cache(Windows)
22-
uses: actions/cache@v3
22+
uses: actions/cache@v5
2323
if: runner.os == 'Windows'
2424
id: vcpkg_cache
2525
with:
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: upload package(Windows)
6969
if: runner.os == 'Windows'
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v6
7171
with:
7272
name: ${{ inputs.os }}-package
7373
path: ./*.zip
@@ -77,7 +77,7 @@ jobs:
7777
cmake --install . --config Release --prefix install_dir
7878
7979
- name: Archive build
80-
uses: actions/upload-artifact@v3
80+
uses: actions/upload-artifact@v6
8181
with:
8282
name: build-${{ inputs.os }}
8383
retention-days: 1
@@ -91,7 +91,7 @@ jobs:
9191
continue-on-error: true
9292
steps:
9393
- name: Checkout
94-
uses: actions/checkout@v3
94+
uses: actions/checkout@v6
9595
- name: install ninja (macOS)
9696
if: runner.os == 'macOS'
9797
run : |
@@ -133,7 +133,7 @@ jobs:
133133
continue-on-error: true
134134
steps:
135135
- name: Checkout
136-
uses: actions/checkout@v3
136+
uses: actions/checkout@v6
137137
- name: install client libs (macOS)
138138
if: runner.os == 'macOS'
139139
run : |
@@ -193,7 +193,7 @@ jobs:
193193

194194
steps:
195195
- name: Download build
196-
uses: actions/download-artifact@v3
196+
uses: actions/download-artifact@v7
197197
with:
198198
name: build-${{ inputs.os }}
199199

@@ -225,7 +225,7 @@ jobs:
225225
226226
- name: actions-setup-pgsql
227227
if: matrix.db =='postgres'
228-
uses: ikalnytskyi/action-setup-postgres@v4
228+
uses: ikalnytskyi/action-setup-postgres@v8
229229
with:
230230
username: sbtest
231231
password: sbtest

0 commit comments

Comments
 (0)