Skip to content

Commit 744e2a7

Browse files
committed
Merge branch 'dependabot/github_actions/maint-27/github-actions-a1e473f551' into maint-27
* dependabot/github_actions/maint-27/github-actions-a1e473f551: build(deps): bump the github-actions group with 8 updates
2 parents 69a3c34 + 2af0fba commit 744e2a7

File tree

7 files changed

+42
-42
lines changed

7 files changed

+42
-42
lines changed

.github/workflows/actions-updater.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
steps:
1515
- name: Generate token
1616
id: generate_token
17-
uses: actions/create-github-app-token@3378cda945da322a8db4b193e19d46352ebe2de5 # ratchet:actions/create-github-app-token@v1.10.4
17+
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # ratchet:actions/create-github-app-token@v1.11.0
1818
with:
1919
app-id: ${{ secrets.APP_ID }}
2020
private-key: ${{ secrets.APP_PEM }}
2121

22-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
22+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
2323
with:
2424
token: ${{ steps.generate_token.outputs.token }}
2525

.github/workflows/main.yaml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
c-code-changes: ${{ steps.c-code-changes.outputs.changes }}
4545
all: ${{ steps.apps.outputs.all }}
4646
steps:
47-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
47+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
4848
- uses: ./.github/actions/build-base-image
4949
with:
5050
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -82,14 +82,14 @@ jobs:
8282
with:
8383
filters: .github/scripts/c-code-path-filters.yaml
8484
- name: Cache pre-built src
85-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # ratchet:actions/cache@v4.0.2
85+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/cache@v4.1.2
8686
with:
8787
path: otp_src.tar.gz
8888
key: prebuilt-src-${{ github.ref_name }}-${{ github.sha }}
8989
restore-keys: |
9090
prebuilt-src-${{ github.base_ref }}-${{ github.event.pull_request.base.sha }}
9191
- name: Cache pre-built binaries
92-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # ratchet:actions/cache@v4.0.2
92+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/cache@v4.1.2
9393
with:
9494
path: otp_cache.tar.gz
9595
key: prebuilt-cache-64-bit-${{ github.ref_name }}-${{ github.sha }}
@@ -98,7 +98,7 @@ jobs:
9898
- name: Create initial pre-release tar
9999
run: .github/scripts/init-pre-release.sh otp_archive.tar.gz otp_src.tar.gz
100100
- name: Upload source tar archive
101-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
101+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
102102
with:
103103
name: otp_git_archive
104104
path: otp_archive.tar.gz
@@ -142,7 +142,7 @@ jobs:
142142
"`pwd`/.github/otp.tar.gz" \
143143
"`pwd`/otp_archive.tar.gz"
144144
- name: Upload restored cache
145-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
145+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
146146
if: runner.debug == 1
147147
with:
148148
name: restored-cache
@@ -169,7 +169,7 @@ jobs:
169169
bash -c 'set -x; C_APPS=$(ls -d ./lib/*/c_src); find Makefile ./make ./erts ./bin/`erts/autoconf/config.guess` ./lib/erl_interface ./lib/jinterface ${C_APPS} `echo "${C_APPS}" | sed -e 's:c_src$:priv:'` -type f -newer README.md \! -name "*.beam" \! -path "*/doc/*" | xargs tar --transform "s:^./:otp/:" -uvf /github/otp_cache.tar'
170170
gzip otp_cache.tar
171171
- name: Upload pre-built tar archives
172-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
172+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
173173
with:
174174
name: otp_prebuilt
175175
path: |
@@ -184,7 +184,7 @@ jobs:
184184
env:
185185
WXWIDGETS_VERSION: 3.1.5
186186
steps:
187-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
187+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
188188

189189
- name: Download source archive
190190
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # ratchet:actions/[email protected]
@@ -193,7 +193,7 @@ jobs:
193193

194194
- name: Cache wxWidgets
195195
id: wxwidgets-cache
196-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # ratchet:actions/cache@v4.0.2
196+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/cache@v4.1.2
197197
with:
198198
path: wxWidgets
199199
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}-${{ hashFiles('.github/scripts/build-macos-wxwidgets.sh')}}-12
@@ -219,7 +219,7 @@ jobs:
219219
./bin/erl -noshell -eval '{wx_ref,_,_,_} = wx:new(), io:format("wx ok~n"), halt().'
220220
221221
- name: Upload tarball
222-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
222+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
223223
with:
224224
name: otp_prebuilt_macos_x86-64
225225
path: otp/otp_macos_*_x86-64.tar.gz
@@ -232,7 +232,7 @@ jobs:
232232
runs-on: macos-12
233233
needs: pack
234234
steps:
235-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
235+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
236236
- name: Download source archive
237237
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # ratchet:actions/[email protected]
238238
with:
@@ -253,7 +253,7 @@ jobs:
253253
xcodebuild -create-xcframework -output ./liberlang.xcframework -library liberlang.a
254254
255255
- name: Upload framework
256-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
256+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
257257
with:
258258
name: ios_framework_${{ env.TARGET_ARCH }}
259259
path: otp/liberlang.xcframework
@@ -269,7 +269,7 @@ jobs:
269269
needs: pack
270270
if: needs.pack.outputs.c-code-changes
271271
steps:
272-
- uses: Vampire/setup-wsl@6f87de3102a29ac6b92800f33bf1e8d9164ac0a1 # ratchet:Vampire/[email protected].1
272+
- uses: Vampire/setup-wsl@23f94bc31caaddc08bd1230a00b89f872633d8d7 # ratchet:Vampire/[email protected].3
273273
with:
274274
distribution: Ubuntu-18.04
275275

@@ -283,7 +283,7 @@ jobs:
283283
IF EXIST "c:\\Program Files\\OpenSSL-Win64" (move "c:\\Program Files\\OpenSSL-Win64" "c:\\OpenSSL-Win64") ELSE (move "c:\\Program Files\\OpenSSL" "c:\\OpenSSL-Win64")
284284
285285
- name: Cache wxWidgets
286-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # ratchet:actions/cache@v4.0.2
286+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/cache@v4.1.2
287287
with:
288288
path: wxWidgets
289289
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}
@@ -353,7 +353,7 @@ jobs:
353353
./otp_build installer_win32
354354
355355
- name: Upload installer
356-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
356+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
357357
with:
358358
name: otp_win32_installer
359359
path: otp/release/win32/otp*.exe
@@ -365,7 +365,7 @@ jobs:
365365
if: needs.pack.outputs.c-code-changes
366366

367367
steps:
368-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
368+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
369369
- uses: ./.github/actions/build-base-image
370370
with:
371371
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -393,7 +393,7 @@ jobs:
393393
fail-fast: false
394394

395395
steps:
396-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
396+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
397397
- uses: ./.github/actions/build-base-image
398398
with:
399399
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -404,7 +404,7 @@ jobs:
404404
runs-on: ubuntu-latest
405405
needs: pack
406406
steps:
407-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
407+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
408408
- uses: ./.github/actions/build-base-image
409409
with:
410410
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -426,12 +426,12 @@ jobs:
426426
- name: Release docs to publish
427427
run: .github/scripts/release-docs.sh
428428
- name: Upload html documentation archive
429-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
429+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
430430
with:
431431
name: otp_doc_html
432432
path: otp_doc_html.tar.gz
433433
- name: Upload man documentation archive
434-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
434+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
435435
with:
436436
name: otp_doc_man
437437
path: otp_doc_man.tar.gz
@@ -449,7 +449,7 @@ jobs:
449449
runs-on: ubuntu-latest
450450
needs: pack
451451
steps:
452-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
452+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
453453
- uses: ./.github/actions/build-base-image
454454
with:
455455
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -478,7 +478,7 @@ jobs:
478478
# type: ["os_mon","sasl"]
479479
fail-fast: false
480480
steps:
481-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
481+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
482482
- uses: ./.github/actions/build-base-image
483483
with:
484484
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -515,7 +515,7 @@ jobs:
515515
sudo bash -c "chown -R `whoami` make_test_dir && chmod -R +r make_test_dir"
516516
tar czf ${{ matrix.type }}_test_results.tar.gz make_test_dir
517517
- name: Upload test results
518-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
518+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
519519
if: ${{ !cancelled() }}
520520
with:
521521
name: ${{ matrix.type }}_test_results
@@ -527,7 +527,7 @@ jobs:
527527
if: ${{ !cancelled() }} # Run even if the need has failed
528528
needs: test
529529
steps:
530-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
530+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
531531
- uses: ./.github/actions/build-base-image
532532
with:
533533
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -562,14 +562,14 @@ jobs:
562562
-e 's:\(file="erts/\)make_test_dir/[^/]*:\1test:g' \
563563
make_test_dir/*_junit.xml
564564
- name: Upload test results
565-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
565+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
566566
if: ${{ !cancelled() }}
567567
with:
568568
name: test_results
569569
path: test_results.tar.gz
570570
- name: Upload Test Results
571571
if: ${{ !cancelled() }}
572-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
572+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
573573
with:
574574
name: Unit Test Results
575575
path: |
@@ -596,7 +596,7 @@ jobs:
596596
echo "tag=${TAG}" >> $GITHUB_OUTPUT
597597
echo "vsn=${VSN}" >> $GITHUB_OUTPUT
598598
599-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
599+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
600600

601601
## Publish the pre-built archive and docs
602602
- name: Download source archive
@@ -627,7 +627,7 @@ jobs:
627627
sha256sum $FILES > SHA256.txt
628628
629629
- name: Upload pre-built and doc tar archives
630-
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # ratchet:softprops/action-gh-release@v2.0.8
630+
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 # ratchet:softprops/action-gh-release@v2.1.0
631631
with:
632632
name: OTP ${{ steps.tag.outputs.vsn }}
633633
files: |
@@ -646,7 +646,7 @@ jobs:
646646
runs-on: ubuntu-latest
647647
steps:
648648
- name: Upload
649-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # ratchet:actions/[email protected].0
649+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # ratchet:actions/[email protected].3
650650
with:
651651
name: Event File
652652
path: ${{ github.event_path }}

.github/workflows/osv-scanner-scheduled.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
outputs:
2121
versions: ${{ steps.get-versions.outputs.versions }}
2222
steps:
23-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
23+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
2424
- id: get-versions
2525
name: Fetch latest 3 OTP versions
2626
run: |
@@ -46,7 +46,7 @@ jobs:
4646
permissions:
4747
actions: write
4848
steps:
49-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
49+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
5050
with:
5151
ref: ${{ matrix.type }}
5252

@@ -74,4 +74,4 @@ jobs:
7474
security-events: write
7575
# Only need to read contents
7676
contents: read
77-
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@f0e6719deb666cd19a0b56bc56d01161bd848b4f" # ratchet:google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v1.8.5
77+
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@19ec1116569a47416e11a45848722b1af31a857b" # ratchet:google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v1.9.0

.github/workflows/pr-comment.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
outputs:
2525
result: ${{ steps.pr-number.outputs.result }}
2626
steps:
27-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
27+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
2828
- name: Fetch PR number
2929
id: pr-number
3030
env:
@@ -43,7 +43,7 @@ jobs:
4343
pull-requests: write
4444
if: github.event.action == 'requested' && needs.pr-number.outputs.result != ''
4545
steps:
46-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
46+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
4747
## We create an initial comment with some useful help to the user
4848
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # ratchet:actions/[email protected]
4949
with:
@@ -66,7 +66,7 @@ jobs:
6666
needs.pr-number.outputs.result != '' &&
6767
github.event.workflow_run.conclusion != 'skipped'
6868
steps:
69-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
69+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
7070
- name: Download and Extract Artifacts
7171
id: extract
7272
env:
@@ -91,14 +91,14 @@ jobs:
9191
echo "HAS_TEST_ARTIFACTS=false" >> $GITHUB_OUTPUT
9292
fi
9393
94-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
94+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
9595
with:
9696
token: ${{ secrets.ERLANG_TOKEN }}
9797
repository: 'erlang/erlang.github.io'
9898
path: erlang.github.io
9999

100100
- name: Publish CT Test Results
101-
uses: EnricoMi/publish-unit-test-result-action@82082dac68ad6a19d980f8ce817e108b9f496c2a # ratchet:EnricoMi/publish-unit-test-result-action@v2.17.1
101+
uses: EnricoMi/publish-unit-test-result-action@170bf24d20d201b842d7a52403b73ed297e6645b # ratchet:EnricoMi/publish-unit-test-result-action@v2.18.0
102102
if: steps.extract.outputs.HAS_TEST_ARTIFACTS == 'true'
103103
with:
104104
commit: ${{ github.event.workflow_run.head_sha }}

.github/workflows/sync-github-prs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
concurrency: erlang.github.io-deploy
1818
runs-on: ubuntu-20.04
1919
steps:
20-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
21-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
20+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
2222
with:
2323
token: ${{ secrets.ERLANG_TOKEN }}
2424
repository: 'erlang/erlang.github.io'

.github/workflows/sync-github-releases.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: write
2424
actions: write
2525
steps:
26-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
26+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
2727
## We need to login to the package registry in order to pull
2828
## the base debian image.
2929
- name: Docker login

.github/workflows/update-base.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fail-fast: false
3030

3131
steps:
32-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # ratchet:actions/checkout@v4.1.7
32+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
3333
with:
3434
ref: ${{ matrix.branch }}
3535
- name: Cleanup GH Runner

0 commit comments

Comments
 (0)