5757 name : " DuckDB Integration Tests"
5858 runs-on : ubuntu-latest
5959 steps :
60- - uses : actions/checkout@v6
60+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6161 with :
6262 fetch-depth : 0
6363 persist-credentials : false
6666 run : |
6767 echo "today=$(/bin/date -u '+%Y%m%d')" >> $GITHUB_OUTPUT
6868 - name : Cache Conda
69- uses : actions/cache/restore@v5
69+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
7070 with :
7171 path : ~/conda_pkgs_dir
7272 key : conda-${{ runner.os }}-${{ steps.get-date.outputs.today }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('ci/**') }}
@@ -104,7 +104,7 @@ jobs:
104104 name : " FlightSQL Integration Tests (Dremio, SQLite, and GizmoSQL)"
105105 runs-on : ubuntu-latest
106106 steps :
107- - uses : actions/checkout@v6
107+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
108108 with :
109109 fetch-depth : 0
110110 persist-credentials : false
@@ -116,7 +116,7 @@ jobs:
116116 run : |
117117 echo "today=$(/bin/date -u '+%Y%m%d')" >> $GITHUB_OUTPUT
118118 - name : Cache Conda
119- uses : actions/cache/restore@v5
119+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
120120 with :
121121 path : ~/conda_pkgs_dir
122122 key : conda-${{ runner.os }}-${{ steps.get-date.outputs.today }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('ci/**') }}
@@ -131,7 +131,7 @@ jobs:
131131 --file ci/conda_env_cpp.txt \
132132 --file ci/conda_env_python.txt
133133 pip install pytest-error-for-skips
134- - uses : actions/setup-go@v6
134+ - uses : actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
135135 with :
136136 go-version : " ${{ env.GO_VERSION }}"
137137 check-latest : true
@@ -181,7 +181,7 @@ jobs:
181181 # Preinstalled tools use a lot of disk space, free up some space
182182 # https://github.com/actions/runner-images/issues/2840
183183 sudo rm -rf "$AGENT_TOOLSDIRECTORY"
184- - uses : actions/checkout@v6
184+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
185185 with :
186186 fetch-depth : 0
187187 persist-credentials : false
@@ -190,7 +190,7 @@ jobs:
190190 run : |
191191 echo "today=$(/bin/date -u '+%Y%m%d')" >> $GITHUB_OUTPUT
192192 - name : Cache Conda
193- uses : actions/cache/restore@v5
193+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
194194 with :
195195 path : ~/conda_pkgs_dir
196196 key : conda-${{ runner.os }}-${{ steps.get-date.outputs.today }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('ci/**') }}
@@ -289,7 +289,7 @@ jobs:
289289 name : " Snowflake Integration Tests"
290290 runs-on : ubuntu-latest
291291 steps :
292- - uses : actions/checkout@v6
292+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
293293 with :
294294 fetch-depth : 0
295295 persist-credentials : false
@@ -301,7 +301,7 @@ jobs:
301301 run : |
302302 echo "today=$(/bin/date -u '+%Y%m%d')" >> $GITHUB_OUTPUT
303303 - name : Cache Conda
304- uses : actions/cache/restore@v5
304+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
305305 with :
306306 path : ~/conda_pkgs_dir
307307 key : conda-${{ runner.os }}-${{ steps.get-date.outputs.today }}-${{ env.CACHE_NUMBER }}-${{ hashFiles('ci/**') }}
@@ -318,7 +318,7 @@ jobs:
318318 - name : Work around ASAN issue (GH-1617)
319319 run : |
320320 sudo sysctl vm.mmap_rnd_bits=28
321- - uses : actions/setup-go@v6
321+ - uses : actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
322322 with :
323323 go-version : " ${{ env.GO_VERSION }}"
324324 check-latest : true
@@ -328,7 +328,7 @@ jobs:
328328 env :
329329 BUILD_ALL : " 0"
330330 BUILD_DRIVER_SNOWFLAKE : " 1"
331- ADBC_SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }}
331+ ADBC_SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }} # zizmor: ignore[secrets-outside-env]
332332 run : |
333333 ./ci/scripts/cpp_build.sh "$(pwd)" "$(pwd)/build"
334334 ./ci/scripts/cpp_test.sh "$(pwd)/build"
@@ -337,7 +337,7 @@ jobs:
337337 BUILD_ALL : " 0"
338338 BUILD_DRIVER_MANAGER : " 1"
339339 BUILD_DRIVER_SNOWFLAKE : " 1"
340- ADBC_SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }}
340+ ADBC_SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }} # zizmor: ignore[secrets-outside-env]
341341 run : |
342342 ./ci/scripts/python_build.sh "$(pwd)" "$(pwd)/build"
343343 env BUILD_DRIVER_MANAGER=0 ./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
@@ -346,14 +346,14 @@ jobs:
346346 name : " FlightSQL C# Interop"
347347 runs-on : ubuntu-latest
348348 steps :
349- - uses : actions/checkout@v6
349+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
350350 with :
351351 fetch-depth : 0
352352 persist-credentials : false
353353 - name : Get required Go version
354354 run : |
355355 (. .env && echo "GO_VERSION=${GO}") >> $GITHUB_ENV
356- - uses : actions/setup-go@v6
356+ - uses : actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
357357 with :
358358 go-version : " ${{ env.GO_VERSION }}"
359359 check-latest : true
0 commit comments