Skip to content

Commit c217902

Browse files
committed
ci: pinact run -u
actions/[email protected], [email protected]
1 parent fd4ff20 commit c217902

File tree

4 files changed

+33
-33
lines changed

4 files changed

+33
-33
lines changed

.github/workflows/cifuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
dry-run: false
3434
language: c
3535
- name: Upload Crash
36-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
36+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
3737
if: failure() && steps.build.outcome == 'success'
3838
with:
3939
name: artifacts

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545

4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4949
with:
5050
submodules: recursive
5151

5252
# Initializes the CodeQL tools for scanning.
5353
- name: Initialize CodeQL
54-
uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
54+
uses: github/codeql-action/init@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
5555
with:
5656
languages: ${{ matrix.language }}
5757
paths-ignore: "test/*"
@@ -63,7 +63,7 @@ jobs:
6363
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6464
# If this step fails, then you should remove it and run the build manually (see below)
6565
- name: Autobuild
66-
uses: github/codeql-action/autobuild@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
66+
uses: github/codeql-action/autobuild@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
6767

6868
# Command-line programs to run using the OS shell.
6969
# https://git.io/JvXDl
@@ -77,4 +77,4 @@ jobs:
7777
# make release
7878

7979
- name: Perform CodeQL Analysis
80-
uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
80+
uses: github/codeql-action/analyze@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6

.github/workflows/main.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
steps:
4040
- if: ${{ startsWith(github.ref, 'refs/tags/') }}
4141
name: checkout for tag
42-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4343
with:
4444
submodules: recursive
4545
- if: ${{ !startsWith(github.ref, 'refs/tags/') }}
4646
name: checkout for commit --depth 50
47-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
47+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4848
with:
4949
fetch-tags: true
5050
fetch-depth: 50
@@ -74,7 +74,7 @@ jobs:
7474
build-aux/install-pslib
7575
build-aux/install-relaxng-svg11
7676
sudo npm i -g geojson-validation
77-
- uses: hendrikmuhs/ccache-action@63069e3931dedbf3b63792097479563182fe70d1 # v1.2.18
77+
- uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
7878
with:
7979
create-symlink: true
8080
key: ${{ github.job }}-${{ matrix.CONFIGURE_ARGS }}
@@ -118,7 +118,7 @@ jobs:
118118
- if: contains(matrix.CONFIGURE_ARGS, '--enable-release') && startsWith(github.ref, 'refs/tags/')
119119
name: Release
120120
continue-on-error: true
121-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
121+
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
122122
with:
123123
body_path: dist.sha256
124124
files: |
@@ -128,12 +128,12 @@ jobs:
128128
runs-on: ubuntu-latest
129129
timeout-minutes: 25
130130
steps:
131-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
131+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
132132
with:
133133
fetch-depth: 1
134134
submodules: recursive
135135
- run: sudo apt-get -y update && sudo apt-get -y install gcc-powerpc64-linux-gnu libc6-ppc64-cross qemu-system-ppc binfmt-support qemu-user qemu-user-binfmt
136-
- uses: hendrikmuhs/ccache-action@63069e3931dedbf3b63792097479563182fe70d1 # v1.2.18
136+
- uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
137137
with:
138138
key: ${{ github.job }}
139139
- run: sh autogen.sh
@@ -146,12 +146,12 @@ jobs:
146146
runs-on: ubuntu-latest
147147
timeout-minutes: 35
148148
steps:
149-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
149+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
150150
with:
151151
fetch-depth: 1
152152
submodules: recursive
153153
- run: sudo apt-get -y update && sudo apt-get -y install gcc-mips-linux-gnu gcc-multilib-mips-linux-gnu
154-
- uses: hendrikmuhs/ccache-action@63069e3931dedbf3b63792097479563182fe70d1 # v1.2.18
154+
- uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
155155
with:
156156
key: ${{ github.job }}
157157
- run: sh autogen.sh
@@ -169,15 +169,15 @@ jobs:
169169
# - "-DLIBREDWG_DISABLE_WRITE=On"
170170
steps:
171171
- name: setup-python
172-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
172+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
173173
with:
174174
python-version: 3.12
175175
- name: checkout
176-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
176+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
177177
with:
178178
fetch-depth: 1
179179
submodules: recursive
180-
- uses: hendrikmuhs/ccache-action@63069e3931dedbf3b63792097479563182fe70d1 # v1.2.18
180+
- uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
181181
with:
182182
create-symlink: true
183183
key: ${{ github.job }}
@@ -187,7 +187,7 @@ jobs:
187187
- if: failure()
188188
run: tar cfz cmake-failure.tgz Testing/Temporary/LastTest.log src/config.h
189189
- if: failure()
190-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
190+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
191191
with:
192192
name: cmake-failure.tgz
193193
path: cmake-failure.tgz
@@ -200,15 +200,15 @@ jobs:
200200
- name: link texinfo
201201
run: brew link texinfo --force
202202
- name: setup-python
203-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
203+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
204204
with:
205205
python-version: 3.12
206206
- name: checkout
207-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
207+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
208208
with:
209209
fetch-depth: 1
210210
submodules: recursive
211-
- uses: hendrikmuhs/ccache-action@63069e3931dedbf3b63792097479563182fe70d1 # v1.2.18
211+
- uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
212212
with:
213213
create-symlink: true
214214
key: ${{ github.job }}
@@ -230,7 +230,7 @@ jobs:
230230
steps:
231231
# see https://github.com/msys2/setup-msys2
232232
- name: setup-msys2
233-
uses: msys2/setup-msys2@40677d36a502eb2cf0fb808cc9dec31bf6152638 # v2.28.0
233+
uses: msys2/setup-msys2@fb197b72ce45fb24f17bf3f807a388985654d1f2 # v2.29.0
234234
with:
235235
path-type: minimal
236236
update: true
@@ -252,7 +252,7 @@ jobs:
252252
mingw-w64-x86_64-pcre2
253253
- run: reg add "HKLM\Software\Microsoft\Windows\Windows Error Reporting" /f /v DontShowUI /d 1
254254
- name: checkout
255-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
255+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
256256
with:
257257
fetch-depth: 1
258258
submodules: recursive
@@ -267,7 +267,7 @@ jobs:
267267
shell: msys2 {0}
268268
run: make -C src dwg_api.i; tar cfz mingw-failure.tgz src/dwg_api.i src/config.h
269269
- if: failure()
270-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
270+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
271271
with:
272272
name: mingw-failure.tgz
273273
path: mingw-failure.tgz
@@ -278,23 +278,23 @@ jobs:
278278
timeout-minutes: 20
279279
steps:
280280
- name: setup-msys2
281-
uses: msys2/setup-msys2@40677d36a502eb2cf0fb808cc9dec31bf6152638 # v2.28.0
281+
uses: msys2/setup-msys2@fb197b72ce45fb24f17bf3f807a388985654d1f2 # v2.29.0
282282
with:
283283
path-type: minimal
284284
- name: checkout
285-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
285+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
286286
with:
287287
fetch-depth: 1
288288
submodules: recursive
289-
- uses: hendrikmuhs/ccache-action@63069e3931dedbf3b63792097479563182fe70d1 # v1.2.18
289+
- uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
290290
with:
291291
key: ${{ github.job }}
292292
- run: cmake -G "MinGW Makefiles" -DDISABLE_WERROR=ON -DCMAKE_C_COMPILER_LAUNCHER=ccache .
293293
- run: mingw32-make -j VERBOSE=1 | tee make.log
294294
- if: failure()
295295
run: tar cfz msys-failure.tgz make.log src/config.h
296296
- if: failure()
297-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
297+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
298298
with:
299299
name: msys-failure.tgz
300300
path: msys-failure.tgz
@@ -303,7 +303,7 @@ jobs:
303303
timeout-minutes: 20
304304
steps:
305305
- name: checkout
306-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
306+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
307307
with:
308308
fetch-depth: 1
309309
submodules: recursive
@@ -314,7 +314,7 @@ jobs:
314314
- if: failure()
315315
run: tar cfz msvc-failure.tgz Testing/Temporary/LastTest.log src/config.h
316316
- if: failure()
317-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
317+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
318318
with:
319319
name: msvc-failure.tgz
320320
path: msvc-failure.tgz
@@ -325,7 +325,7 @@ jobs:
325325
# ACTIONS_ALLOW_UNSECURE_COMMANDS: true
326326
steps:
327327
- name: checkout
328-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
328+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
329329
with:
330330
fetch-depth: 1
331331
submodules: recursive

.github/workflows/oda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
strategy:
2020
fail-fast: true
2121
steps:
22-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2323
with:
2424
fetch-depth: 1
2525
submodules: recursive
2626
- name: setup-python
27-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
27+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2828
with:
2929
python-version: '3.10'
3030
- uses: pyvista/setup-headless-display-action@7d84ae825e6d9297a8e99bdbbae20d1b919a0b19 # v4.2
@@ -45,7 +45,7 @@ jobs:
4545
test -f example_2000.dxf || (cat example_2000.dxf.err; exit 1)
4646
echo ODAFileConverter works ok
4747
export QT_DEBUG_PLUGINS=
48-
- uses: hendrikmuhs/ccache-action@63069e3931dedbf3b63792097479563182fe70d1 # v1.2.18
48+
- uses: hendrikmuhs/ccache-action@5ebbd400eff9e74630f759d94ddd7b6c26299639 # v1.2.20
4949
with:
5050
create-symlink: true
5151
key: ${{ github.job }}

0 commit comments

Comments
 (0)