Skip to content

Commit ec0a688

Browse files
authored
Merge pull request #18 from devkdas/resolve-conf
Resolve conf
2 parents 721c466 + 6a97bc2 commit ec0a688

1,577 files changed

Lines changed: 17105 additions & 17936 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ updates:
88
directory: '/'
99
schedule:
1010
interval: 'monthly'
11+
cooldown:
12+
default-days: 7
13+
groups:
14+
actions-deps:
15+
patterns:
16+
- '*'
1117
commit-message:
1218
prefix: 'GHA:'
1319

@@ -17,5 +23,14 @@ updates:
1723
- '/tests'
1824
schedule:
1925
interval: 'monthly'
26+
cooldown:
27+
default-days: 7
28+
semver-major-days: 15
29+
semver-minor-days: 7
30+
semver-patch-days: 3
31+
groups:
32+
actions-deps:
33+
patterns:
34+
- '*'
2035
commit-message:
2136
prefix: 'GHA:'

.github/labeler.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ cryptography:
162162
docs/libcurl/opts/CURLOPT_EGDSOCKET*,\
163163
lib/*sha256*,\
164164
lib/*sha512*,\
165-
lib/curl_des.*,\
166165
lib/curl_hmac.*,\
167166
lib/curl_md?.*,\
167+
lib/curl_ntlm_core.*,\
168168
lib/md?.*,\
169169
lib/rand.*\
170170
}"
@@ -451,6 +451,7 @@ TLS:
451451
- all:
452452
- changed-files:
453453
- any-glob-to-all-files: "{\
454+
CMake/FindGnuTLS.cmake,\
454455
CMake/FindMbedTLS.cmake,\
455456
CMake/FindWolfSSL.cmake,\
456457
CMake/FindRustls.cmake,\

.github/scripts/badwords.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ there's:there is
4646
\. But: Rewrite it somehow?
4747
\. So : Rewrite without "so" ?
4848
dir :directory
49+
sub-director:subdirector
4950
can't:cannot
5051
that's:that is
5152
web page:webpage

.github/scripts/requirements-docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#
33
# SPDX-License-Identifier: curl
44

5-
pyspelling==2.11
5+
pyspelling==2.12

.github/scripts/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
cmakelang==0.6.13
66
codespell==2.4.1
77
pytype==2024.10.11
8-
reuse==6.1.2
9-
ruff==0.14.0
8+
reuse==6.2.0
9+
ruff==0.14.1

.github/scripts/spacecheck.pl

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@
4242
"\\.(bat|sln)\$",
4343
);
4444

45-
my @space_at_eol = (
46-
"^tests/data/test",
47-
);
48-
4945
my @non_ascii_allowed = (
5046
'\xC3\xB6', # UTF-8 for https://codepoints.net/U+00F6 LATIN SMALL LETTER O WITH DIAERESIS
5147
);
@@ -129,8 +125,7 @@ sub eol_detect {
129125
push @err, "content: must use LF EOL for this file type";
130126
}
131127

132-
if(!fn_match($filename, @space_at_eol) &&
133-
$content =~ /[ \t]\n/) {
128+
if($content =~ /[ \t]\n/) {
134129
my $line;
135130
for my $l (split(/\n/, $content)) {
136131
$line++;

.github/workflows/checksrc.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ name: 'Source'
2727
- 'plan9/**'
2828
- 'tests/data/**'
2929

30+
concurrency:
31+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
32+
cancel-in-progress: true
33+
3034
permissions: {}
3135

3236
jobs:
@@ -49,7 +53,7 @@ jobs:
4953
with:
5054
persist-credentials: false
5155

52-
- name: 'install'
56+
- name: 'install prereqs'
5357
run: |
5458
python3 -m venv ~/venv
5559
~/venv/bin/pip --disable-pip-version-check --no-input --no-cache-dir install --progress-bar off --prefer-binary \
@@ -131,7 +135,7 @@ jobs:
131135
GH_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
132136
run: |
133137
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
134-
zizmor --pedantic .github/workflows/*.yml
138+
zizmor --pedantic .github/workflows/*.yml .github/dependabot.yml
135139
136140
- name: 'shellcheck CI'
137141
run: |

.github/workflows/codeql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ name: 'CodeQL'
3232
- cron: '0 0 * * 4'
3333

3434
concurrency:
35-
group: ${{ github.workflow }}
35+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
36+
cancel-in-progress: true
3637

3738
permissions: {}
3839

.github/workflows/configure-vs-cmake.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ name: 'configure-vs-cmake'
3030
- '.github/scripts/cmp-config.pl'
3131
- '.github/workflows/configure-vs-cmake.yml'
3232

33+
concurrency:
34+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
35+
cancel-in-progress: true
36+
3337
permissions: {}
3438

3539
jobs:

.github/workflows/distcheck.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: 'maketgz'
5050
run: SOURCE_DATE_EPOCH=1711526400 ./scripts/maketgz 99.98.97
5151

52-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
52+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5353
with:
5454
name: 'release-tgz'
5555
path: 'curl-99.98.97.tar.gz'
@@ -75,7 +75,7 @@ jobs:
7575
timeout-minutes: 10
7676
needs: maketgz-and-verify-in-tree
7777
steps:
78-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
78+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
7979
with:
8080
name: 'release-tgz'
8181

@@ -99,7 +99,7 @@ jobs:
9999
timeout-minutes: 10
100100
needs: maketgz-and-verify-in-tree
101101
steps:
102-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
102+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
103103
with:
104104
name: 'release-tgz'
105105

@@ -125,7 +125,7 @@ jobs:
125125
timeout-minutes: 10
126126
needs: maketgz-and-verify-in-tree
127127
steps:
128-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
128+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
129129
with:
130130
name: 'release-tgz'
131131

@@ -149,7 +149,7 @@ jobs:
149149
timeout-minutes: 10
150150
needs: maketgz-and-verify-in-tree
151151
steps:
152-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
152+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
153153
with:
154154
name: 'release-tgz'
155155

@@ -170,7 +170,7 @@ jobs:
170170
timeout-minutes: 5
171171
needs: maketgz-and-verify-in-tree
172172
steps:
173-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
173+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
174174
with:
175175
name: 'release-tgz'
176176

@@ -192,7 +192,7 @@ jobs:
192192
timeout-minutes: 5
193193
needs: maketgz-and-verify-in-tree
194194
steps:
195-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
195+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
196196
with:
197197
name: 'release-tgz'
198198

@@ -218,7 +218,7 @@ jobs:
218218
with:
219219
persist-credentials: false
220220

221-
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
221+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
222222
with:
223223
name: 'release-tgz'
224224

0 commit comments

Comments
 (0)