@@ -12,10 +12,10 @@ jobs:
1212 build-and-test :
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v2
15+ - uses : actions/checkout@v6
1616
1717 - name : Set up Python 3.13
18- uses : actions/setup-python@v4
18+ uses : actions/setup-python@v6
1919 with :
2020 python-version : 3.13
2121
2424
2525 - name : Install azure-sdk-tools
2626 run : |
27- python -m pip install -e eng/tools/azure-sdk-tools[ghtools,conda]
27+ python -m pip install -e ' eng/tools/azure-sdk-tools[ghtools,conda]'
2828 python -m pip freeze
2929 shell : bash
3030
@@ -37,10 +37,10 @@ jobs:
3737 static-analysis :
3838 runs-on : ubuntu-latest
3939 steps :
40- - uses : actions/checkout@v2
40+ - uses : actions/checkout@v6
4141
4242 - name : Set up Python 3.13
43- uses : actions/setup-python@v4
43+ uses : actions/setup-python@v6
4444 with :
4545 python-version : 3.13
4646
4949
5050 - name : Install azure-sdk-tools
5151 run : |
52- python -m pip install -e eng/tools/azure-sdk-tools[ghtools,conda]
52+ python -m pip install -e ' eng/tools/azure-sdk-tools[ghtools,conda]'
5353 python -m pip install black==24.4.0
5454 python -m pip freeze
5555 shell : bash
@@ -62,10 +62,10 @@ jobs:
6262 verify-azpysdk-checks :
6363 runs-on : ubuntu-latest
6464 steps :
65- - uses : actions/checkout@v2
65+ - uses : actions/checkout@v6
6666
6767 - name : Set up Python 3.13
68- uses : actions/setup-python@v4
68+ uses : actions/setup-python@v6
6969 with :
7070 python-version : 3.13
7171
7979
8080 - name : Install azure-sdk-tools on in global uv, discover azpysdk checks
8181 run : |
82- uv pip install --system -e eng/tools/azure-sdk-tools[ghtools,conda,systemperf]
82+ uv pip install --system -e ' eng/tools/azure-sdk-tools[ghtools,conda,systemperf]'
8383
8484 # Discover available azpysdk commands from the {command1,command2,...} line in help output
8585 CHECKS=$(azpysdk -h 2>&1 | \
@@ -102,20 +102,20 @@ jobs:
102102
103103 - name : Run all discovered checks against azure-template using uv as package manager
104104 run : |
105- sdk_build azure-template -d $(pwd)/wheels --build_id 20250101.1
106- python eng/scripts/dispatch_checks.py --checks "$AZPYSDK_CHECKS" --wheel_dir $(pwd)/wheels azure-template
105+ sdk_build azure-template -d " $(pwd)/wheels" --build_id 20250101.1
106+ python eng/scripts/dispatch_checks.py --checks "$AZPYSDK_CHECKS" --wheel_dir " $(pwd)/wheels" azure-template
107107 shell : bash
108108 env :
109109 AZPYSDK_PIP_IMPL : " uv"
110110
111111 - name : Install azure-sdk-tools on global pip env
112112 run : |
113- python -m pip install -e eng/tools/azure-sdk-tools[ghtools,conda]
113+ python -m pip install -e ' eng/tools/azure-sdk-tools[ghtools,conda]'
114114 shell : bash
115115
116116 - name : Run all discovered checks against azure-template using pip as package manager
117117 run : |
118- python eng/scripts/dispatch_checks.py --checks "$AZPYSDK_CHECKS" --wheel_dir $(pwd)/wheels azure-template
118+ python eng/scripts/dispatch_checks.py --checks "$AZPYSDK_CHECKS" --wheel_dir " $(pwd)/wheels" azure-template
119119 shell : bash
120120 env :
121121 AZPYSDK_PIP_IMPL : " pip"
0 commit comments