Skip to content

Commit 5183d1f

Browse files
authored
Merge branch 'master' into fix-test
2 parents bd7092e + 1ec0e6c commit 5183d1f

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616

1717
- name: Install Depedencies
1818
env:
@@ -23,7 +23,7 @@ jobs:
2323
run: meson build && ninja -C build
2424

2525
- name: Upload
26-
uses: actions/upload-artifact@v1
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: vala-lint
2929
path: ./
@@ -43,7 +43,7 @@ jobs:
4343
run: apt-get update && apt-get -y install ${dependency_packages}
4444

4545
- name: Download
46-
uses: actions/download-artifact@v1
46+
uses: actions/download-artifact@v4
4747
with:
4848
name: vala-lint
4949
path: ./
@@ -69,7 +69,7 @@ jobs:
6969
run: apt-get update && apt-get -y install ${dependency_packages}
7070

7171
- name: Download
72-
uses: actions/download-artifact@v1
72+
uses: actions/download-artifact@v4
7373
with:
7474
name: vala-lint
7575
path: ./
@@ -95,7 +95,7 @@ jobs:
9595
run: apt-get update && apt-get -y install ${dependency_packages}
9696

9797
- name: Download
98-
uses: actions/download-artifact@v1
98+
uses: actions/download-artifact@v4
9999
with:
100100
name: vala-lint
101101
path: ./
@@ -131,7 +131,7 @@ jobs:
131131
run: apt-get update && apt-get -y install ${dependency_packages}
132132

133133
- name: Download
134-
uses: actions/download-artifact@v1
134+
uses: actions/download-artifact@v4
135135
with:
136136
name: vala-lint
137137
path: ./

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Clone
13-
uses: actions/checkout@v1
13+
uses: actions/checkout@v4
1414

1515
- name: Publish
1616
run: |

meson.build

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ libvala_required_version = '>= 0.40.4'
1515
libvala_dep = dependency('libvala-@0@'.format(libvala_version), version: libvala_required_version)
1616
json_dep = dependency('json-glib-1.0')
1717

18+
add_project_arguments(
19+
'-w',
20+
language: 'C'
21+
)
22+
1823
subdir('lib')
1924
subdir('src')
2025
subdir('test')

0 commit comments

Comments
 (0)