Skip to content

Commit dbccd0a

Browse files
committed
Merge branch 'dependabot/github_actions/maint-26/github-actions-e7412efb78' into maint-26
* dependabot/github_actions/maint-26/github-actions-e7412efb78: build(deps): bump the github-actions group with 6 updates
2 parents 23c81bb + ae07906 commit dbccd0a

File tree

7 files changed

+29
-29
lines changed

7 files changed

+29
-29
lines changed

.github/workflows/actions-updater.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
app-id: ${{ secrets.APP_ID }}
2323
private-key: ${{ secrets.APP_PEM }}
2424

25-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
25+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
2626
with:
2727
token: ${{ steps.generate_token.outputs.token }}
2828

.github/workflows/main.yaml

Lines changed: 16 additions & 16 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
47+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
4848
- uses: ./.github/actions/build-base-image
4949
with:
5050
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -77,19 +77,19 @@ jobs:
7777
echo "changes=${CHANGED_APPS}" >> "$GITHUB_OUTPUT"
7878
fi
7979
- name: Check if there are any C-code changes, if not then limit CI run
80-
uses: dorny/paths-filter@0bc4621a3135347011ad047f9ecf449bf72ce2bd # ratchet:dorny/[email protected].0
80+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # ratchet:dorny/[email protected].2
8181
id: c-code-changes
8282
with:
8383
filters: .github/scripts/c-code-path-filters.yaml
8484
- name: Cache pre-built src
85-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # ratchet:actions/[email protected].1
85+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/[email protected].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@3624ceb22c1c5a301c8db4169662070a689d9ea8 # ratchet:actions/[email protected].1
92+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/[email protected].2
9393
with:
9494
path: otp_cache.tar.gz
9595
key: prebuilt-cache-64-bit-${{ github.ref_name }}-${{ github.sha }}
@@ -185,7 +185,7 @@ jobs:
185185
WXWIDGETS_VERSION: 3.2.6
186186
MACOS_VERSION: 15
187187
steps:
188-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
188+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
189189

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

195195
- name: Cache wxWidgets
196196
id: wxwidgets-cache
197-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # ratchet:actions/[email protected].1
197+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/[email protected].2
198198
with:
199199
path: wxWidgets
200200
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}-${{ hashFiles('.github/scripts/build-macos-wxwidgets.sh') }}-${{ env.MACOS_VERSION }}
@@ -233,7 +233,7 @@ jobs:
233233
runs-on: macos-15
234234
needs: pack
235235
steps:
236-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
236+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
237237
- name: Download source archive
238238
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # ratchet:actions/[email protected]
239239
with:
@@ -284,7 +284,7 @@ jobs:
284284
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")
285285
286286
- name: Cache wxWidgets
287-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # ratchet:actions/[email protected].1
287+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # ratchet:actions/[email protected].2
288288
with:
289289
path: wxWidgets
290290
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}
@@ -366,7 +366,7 @@ jobs:
366366
if: needs.pack.outputs.c-code-changes
367367

368368
steps:
369-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
369+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
370370
- uses: ./.github/actions/build-base-image
371371
with:
372372
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -394,7 +394,7 @@ jobs:
394394
fail-fast: false
395395

396396
steps:
397-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
397+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
398398
- uses: ./.github/actions/build-base-image
399399
with:
400400
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -405,7 +405,7 @@ jobs:
405405
runs-on: ubuntu-latest
406406
needs: pack
407407
steps:
408-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
408+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
409409
- uses: ./.github/actions/build-base-image
410410
with:
411411
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -447,7 +447,7 @@ jobs:
447447
runs-on: ubuntu-latest
448448
needs: pack
449449
steps:
450-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
450+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
451451
- uses: ./.github/actions/build-base-image
452452
with:
453453
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -476,7 +476,7 @@ jobs:
476476
# type: ["os_mon","sasl"]
477477
fail-fast: false
478478
steps:
479-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
479+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
480480
- uses: ./.github/actions/build-base-image
481481
with:
482482
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -525,7 +525,7 @@ jobs:
525525
if: ${{ !cancelled() }} # Run even if the need has failed
526526
needs: test
527527
steps:
528-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
528+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
529529
- uses: ./.github/actions/build-base-image
530530
with:
531531
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -594,7 +594,7 @@ jobs:
594594
echo "tag=${TAG}" >> $GITHUB_OUTPUT
595595
echo "vsn=${VSN}" >> $GITHUB_OUTPUT
596596
597-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
597+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
598598

599599
## Publish the pre-built archive and docs
600600
- name: Download source archive
@@ -625,7 +625,7 @@ jobs:
625625
sha256sum $FILES > SHA256.txt
626626
627627
- name: Upload pre-built and doc tar archives
628-
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # ratchet:softprops/action-gh-release@v2.0.8
628+
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 # ratchet:softprops/action-gh-release@v2.1.0
629629
with:
630630
name: OTP ${{ steps.tag.outputs.vsn }}
631631
files: |

.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 needs 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
27+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
46+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
69+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
94+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
21-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
20+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].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
@@ -22,7 +22,7 @@ jobs:
2222
## Needed to create releases
2323
contents: write
2424
steps:
25-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
25+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
2626
## We need to login to the package registry in order to pull
2727
## the base debian image.
2828
- 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/[email protected].1
32+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/[email protected].2
3333
with:
3434
ref: ${{ matrix.branch }}
3535
- name: Cleanup GH Runner

0 commit comments

Comments
 (0)