Skip to content

Commit d235352

Browse files
authored
ansible-core dev branch is now future 2.22 (#217)
1 parent ac7406d commit d235352

3 files changed

Lines changed: 83 additions & 0 deletions

File tree

.github/workflows/ansible-test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ jobs:
8282
- stable-2.18
8383
- stable-2.19
8484
- stable-2.20
85+
- stable-2.21
8586
- devel
8687
# - milestone
8788

@@ -150,6 +151,8 @@ jobs:
150151
python: "3.14"
151152
- ansible: stable-2.20
152153
python: "3.11"
154+
- ansible: stable-2.21
155+
python: "3.11"
153156
- ansible: devel
154157
python: "3.11"
155158

tests/sanity/ignore-2.22.txt

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
plugins/modules/apk.sh shebang
2+
plugins/modules/apk.sh validate-modules:invalid-extension
3+
plugins/modules/command.sh shebang
4+
plugins/modules/command.sh validate-modules:invalid-extension
5+
plugins/modules/copy.sh shebang
6+
plugins/modules/copy.sh validate-modules:invalid-extension
7+
plugins/modules/file.sh shebang
8+
plugins/modules/file.sh validate-modules:invalid-extension
9+
plugins/modules/group.sh shebang
10+
plugins/modules/group.sh validate-modules:invalid-extension
11+
plugins/modules/lineinfile.sh shebang
12+
plugins/modules/lineinfile.sh validate-modules:invalid-extension
13+
plugins/modules/nohup.sh shebang
14+
plugins/modules/nohup.sh validate-modules:invalid-extension
15+
plugins/modules/opkg.sh shebang
16+
plugins/modules/opkg.sh validate-modules:invalid-extension
17+
plugins/modules/package_facts.sh shebang
18+
plugins/modules/package_facts.sh validate-modules:invalid-extension
19+
plugins/modules/ping.sh shebang
20+
plugins/modules/ping.sh validate-modules:invalid-extension
21+
plugins/modules/service.sh shebang
22+
plugins/modules/service.sh validate-modules:invalid-extension
23+
plugins/modules/setup.sh shebang
24+
plugins/modules/setup.sh validate-modules:invalid-extension
25+
plugins/modules/slurp.sh shebang
26+
plugins/modules/slurp.sh validate-modules:invalid-extension
27+
plugins/modules/stat.sh shebang
28+
plugins/modules/stat.sh validate-modules:invalid-extension
29+
plugins/modules/sysctl.sh shebang
30+
plugins/modules/sysctl.sh validate-modules:invalid-extension
31+
plugins/modules/tempfile.sh shebang
32+
plugins/modules/tempfile.sh validate-modules:invalid-extension
33+
plugins/modules/uci.sh shebang
34+
plugins/modules/uci.sh validate-modules:invalid-extension
35+
plugins/modules/wrapper.sh shebang
36+
plugins/modules/wrapper.sh validate-modules:invalid-extension
37+
plugins/modules/apk.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
38+
plugins/modules/copy.sh shellcheck:SC2016 # Expressions don't expand in single quotes, use double quotes for that - https://www.shellcheck.net/wiki/SC2016
39+
plugins/modules/copy.sh shellcheck:SC2059 # Don't use variables in the `printf` format string. Use `printf "..%s.." "$foo"` - https://www.shellcheck.net/wiki/SC2059
40+
plugins/modules/copy.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
41+
plugins/modules/copy.sh shellcheck:SC2091 # Remove surrounding `$()` to avoid executing output (or use `eval` if intentional) - https://www.shellcheck.net/wiki/SC2091
42+
plugins/modules/copy.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
43+
plugins/modules/file.sh shellcheck:SC2015 # Note that `A && B || C` is not if-then-else. C may run when A is true - https://www.shellcheck.net/wiki/SC2015
44+
plugins/modules/file.sh shellcheck:SC2046 # Quote this to prevent word splitting - https://www.shellcheck.net/wiki/SC2046
45+
plugins/modules/file.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
46+
plugins/modules/file.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
47+
plugins/modules/lineinfile.sh shellcheck:SC2015 # Note that `A && B || C` is not if-then-else. C may run when A is true - https://www.shellcheck.net/wiki/SC2015
48+
plugins/modules/lineinfile.sh shellcheck:SC2016 # Expressions don't expand in single quotes, use double quotes for that - https://www.shellcheck.net/wiki/SC2016
49+
plugins/modules/lineinfile.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
50+
plugins/modules/opkg.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
51+
plugins/modules/opkg.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
52+
plugins/modules/ping.sh shellcheck:SC2319 # This `$?` refers to a condition, not a command. Assign to a variable to avoid it being overwritten - https://www.shellcheck.net/wiki/SC2319
53+
plugins/modules/setup.sh shellcheck:SC2012 # Use `find` instead of `ls` to better handle non-alphanumeric filenames - https://www.shellcheck.net/wiki/SC2012
54+
plugins/modules/setup.sh shellcheck:SC2015 # Note that `A && B || C` is not if-then-else. C may run when A is true - https://www.shellcheck.net/wiki/SC2015
55+
plugins/modules/setup.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
56+
plugins/modules/setup.sh shellcheck:SC2155 # Declare and assign separately to avoid masking return values - https://www.shellcheck.net/wiki/SC2155
57+
plugins/modules/stat.sh shellcheck:SC2046 # Quote this to prevent word splitting - https://www.shellcheck.net/wiki/SC2046
58+
plugins/modules/stat.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
59+
plugins/modules/stat.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
60+
plugins/modules/sysctl.sh shellcheck:SC2005 # ShellCheck: SC2005 – - https://www.shellcheck.net/wiki/SC2005
61+
plugins/modules/sysctl.sh shellcheck:SC2046 # Quote this to prevent word splitting - https://www.shellcheck.net/wiki/SC2046
62+
plugins/modules/sysctl.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
63+
plugins/modules/sysctl.sh shellcheck:SC2162 # `read` without `-r` will mangle backslashes - https://www.shellcheck.net/wiki/SC2162
64+
plugins/modules/sysctl.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
65+
plugins/modules/uci.sh shellcheck:SC1087 # Use braces when expanding arrays, e.g. `${array[idx]}` (or `${var}[..` to quiet) - https://www.shellcheck.net/wiki/SC1087
66+
plugins/modules/uci.sh shellcheck:SC2015 # Note that `A && B || C` is not if-then-else. C may run when A is true - https://www.shellcheck.net/wiki/SC2015
67+
plugins/modules/uci.sh shellcheck:SC2046 # Quote this to prevent word splitting - https://www.shellcheck.net/wiki/SC2046
68+
plugins/modules/uci.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
69+
plugins/modules/uci.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
70+
plugins/modules/wrapper.sh shellcheck:SC2012 # Use `find` instead of `ls` to better handle non-alphanumeric filenames - https://www.shellcheck.net/wiki/SC2012
71+
plugins/modules/wrapper.sh shellcheck:SC2015 # Note that `A && B || C` is not if-then-else. C may run when A is true - https://www.shellcheck.net/wiki/SC2015
72+
plugins/modules/wrapper.sh shellcheck:SC2046 # Quote this to prevent word splitting - https://www.shellcheck.net/wiki/SC2046
73+
plugins/modules/wrapper.sh shellcheck:SC2086 # Double quote to prevent globbing and word splitting - https://www.shellcheck.net/wiki/SC2086
74+
plugins/modules/wrapper.sh shellcheck:SC2119 # Use `foo "$@"` if function's `$1` should mean script's `$1` - https://www.shellcheck.net/wiki/SC2119
75+
plugins/modules/wrapper.sh shellcheck:SC2120 # foo references arguments, but none are ever passed - https://www.shellcheck.net/wiki/SC2120
76+
plugins/modules/wrapper.sh shellcheck:SC2155 # Declare and assign separately to avoid masking return values - https://www.shellcheck.net/wiki/SC2155
77+
plugins/modules/wrapper.sh shellcheck:SC2166 # Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well-defined - https://www.shellcheck.net/wiki/SC2166
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
2+
SPDX-License-Identifier: GPL-3.0-or-later
3+
SPDX-FileCopyrightText: Ansible Project

0 commit comments

Comments
 (0)