Skip to content

Commit dd08154

Browse files
committed
chore(deps): update github-actions
1 parent ccff599 commit dd08154

File tree

9 files changed

+36
-36
lines changed

9 files changed

+36
-36
lines changed

.github/actions/build-base-image/action.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ runs:
2727
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
2828

2929
- name: Cache BASE image
30-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4.2.3
30+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3131
if: inputs.TYPE == '64-bit' || inputs.TYPE == 'clang'
3232
with:
3333
path: otp_docker_base.tar
3434
key: ${{ runner.os }}-${{ hashFiles('.github/dockerfiles/Dockerfile.ubuntu-base', '.github/scripts/build-base-image.sh') }}-${{ steps.date.outputs.date }}-${{ hashFiles('OTP_VERSION') }}
3535

3636
- name: Docker login
37-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # ratchet:docker/login-action@v3.4.0
37+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
3838
with:
3939
registry: ghcr.io
4040
username: ${{ github.repository_owner }}
@@ -47,7 +47,7 @@ runs:
4747
- name: Cache pre-built src
4848
id: cache-src
4949
if: inputs.BUILD_IMAGE == 'true'
50-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4.2.3
50+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
5151
with:
5252
path: otp_src.tar.gz
5353
key: prebuilt-src-${{ github.ref_name }}-${{ github.sha }}
@@ -61,7 +61,7 @@ runs:
6161
- name: Cache pre-built binaries
6262
id: cache-binary
6363
if: inputs.BUILD_IMAGE == 'true' && steps.cache-src.outputs.cache-hit == 'true'
64-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4.2.3
64+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
6565
with:
6666
path: otp_cache.tar.gz
6767
key: prebuilt-cache-${{ inputs.TYPE }}-${{ github.ref_name }}-${{ github.sha }}

.github/workflows/actions-updater.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414
steps:
1515
- name: Generate token
1616
id: generate_token
17-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # ratchet:actions/create-github-app-token@v2.0.6
17+
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
1818
with:
1919
app-id: ${{ secrets.APP_ID }}
2020
private-key: ${{ secrets.APP_PEM }}
2121

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

2626
- name: Run GitHub Actions Version Updater
27-
uses: saadmk11/github-actions-version-updater@64be81ba69383f81f2be476703ea6570c4c8686e # ratchet:saadmk11/github-actions-version-updater@v0.8.1
27+
uses: saadmk11/github-actions-version-updater@d8781caf11d11168579c8e5e94f62b068038f442 # v0.9.0
2828
with:
2929
token: ${{ steps.generate_token.outputs.token }}
3030
pull_request_branch: "github/actions-update"

.github/workflows/github-actions-checker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: 'ubuntu-latest'
3333
name: 'ratchet'
3434
steps:
35-
- uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # ratchet:actions/checkout@v4.2.2
35+
- uses: 'actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # v4.3.0
3636
- id: files
3737
run: |
3838
FILES=$(find .github/ -name "*.yml" -o -name "*.yaml" -printf "%p ")

.github/workflows/main.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
c-code-changes: ${{ steps.c-code-changes.outputs.changes }}
6464
all: ${{ steps.apps.outputs.all }}
6565
steps:
66-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
66+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
6767
- uses: ./.github/actions/build-base-image
6868
with:
6969
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -101,14 +101,14 @@ jobs:
101101
with:
102102
filters: .github/scripts/c-code-path-filters.yaml
103103
- name: Cache pre-built src
104-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4.2.3
104+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
105105
with:
106106
path: otp_src.tar.gz
107107
key: prebuilt-src-${{ github.ref_name }}-${{ github.sha }}
108108
restore-keys: |
109109
prebuilt-src-${{ github.base_ref }}-${{ github.event.pull_request.base.sha }}
110110
- name: Cache pre-built binaries
111-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4.2.3
111+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
112112
with:
113113
path: otp_cache.tar.gz
114114
key: prebuilt-cache-64-bit-${{ github.ref_name }}-${{ github.sha }}
@@ -204,7 +204,7 @@ jobs:
204204
WXWIDGETS_VERSION: 3.2.6
205205
MACOS_VERSION: 15
206206
steps:
207-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
207+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
208208

209209
- name: Download source archive
210210
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # ratchet:actions/[email protected]
@@ -213,7 +213,7 @@ jobs:
213213

214214
- name: Cache wxWidgets
215215
id: wxwidgets-cache
216-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4.2.3
216+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
217217
with:
218218
path: wxWidgets
219219
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}-${{ hashFiles('.github/scripts/build-macos-wxwidgets.sh') }}-${{ env.MACOS_VERSION }}
@@ -252,7 +252,7 @@ jobs:
252252
runs-on: macos-15
253253
needs: pack
254254
steps:
255-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
255+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
256256
- name: Download source archive
257257
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # ratchet:actions/[email protected]
258258
with:
@@ -303,7 +303,7 @@ jobs:
303303
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")
304304
305305
- name: Cache wxWidgets
306-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4.2.3
306+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
307307
with:
308308
path: wxWidgets
309309
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}
@@ -385,7 +385,7 @@ jobs:
385385
if: needs.pack.outputs.c-code-changes
386386

387387
steps:
388-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
388+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
389389
- uses: ./.github/actions/build-base-image
390390
with:
391391
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -413,7 +413,7 @@ jobs:
413413
fail-fast: false
414414

415415
steps:
416-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
416+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
417417
- uses: ./.github/actions/build-base-image
418418
with:
419419
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -424,7 +424,7 @@ jobs:
424424
runs-on: ubuntu-latest
425425
needs: pack
426426
steps:
427-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
427+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
428428
- uses: ./.github/actions/build-base-image
429429
with:
430430
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -469,7 +469,7 @@ jobs:
469469
runs-on: ubuntu-latest
470470
needs: pack
471471
steps:
472-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
472+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
473473
- uses: ./.github/actions/build-base-image
474474
with:
475475
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -498,7 +498,7 @@ jobs:
498498
# type: ["os_mon","sasl"]
499499
fail-fast: false
500500
steps:
501-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
501+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
502502
- uses: ./.github/actions/build-base-image
503503
with:
504504
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -551,7 +551,7 @@ jobs:
551551
if: ${{ !cancelled() }} # Run even if the need has failed
552552
needs: test
553553
steps:
554-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
554+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
555555
- uses: ./.github/actions/build-base-image
556556
with:
557557
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -625,7 +625,7 @@ jobs:
625625
echo "tag=${TAG}" >> $GITHUB_OUTPUT
626626
echo "vsn=${VSN}" >> $GITHUB_OUTPUT
627627
628-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
628+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
629629

630630
## Publish the pre-built archive and docs
631631
- name: Download source archive
@@ -656,7 +656,7 @@ jobs:
656656
sha256sum $FILES > SHA256.txt
657657
658658
- name: Upload pre-built and doc tar archives
659-
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # ratchet:softprops/action-gh-release@v2.2.2
659+
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
660660
with:
661661
name: OTP ${{ steps.tag.outputs.vsn }}
662662
files: |

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
outputs:
3939
versions: ${{ steps.get-versions.outputs.versions }}
4040
steps:
41-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
41+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4242
- id: get-versions
4343
name: Fetch latest 3 OTP versions
4444
run: |
@@ -58,7 +58,7 @@ jobs:
5858
permissions:
5959
actions: write
6060
steps:
61-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
61+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
6262
with:
6363
ref: ${{ matrix.type }}
6464

@@ -85,6 +85,6 @@ jobs:
8585
# See: https://github.com/github/codeql-action/issues/2117
8686
actions: read
8787
contents: read
88-
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@e69cc6c86b31f1e7e23935bbe7031b50e51082de" # ratchet:google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.0.2
88+
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@e69cc6c86b31f1e7e23935bbe7031b50e51082de" # ratchet:google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.2.2"
8989
with:
9090
upload-sarif: ${{ github.repository == 'erlang/otp' }}

.github/workflows/pr-comment.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
outputs:
4343
result: ${{ steps.pr-number.outputs.result }}
4444
steps:
45-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
45+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4646
- name: Fetch PR number
4747
id: pr-number
4848
env:
@@ -61,7 +61,7 @@ jobs:
6161
pull-requests: write
6262
if: github.event.action == 'requested' && needs.pr-number.outputs.result != ''
6363
steps:
64-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
64+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
6565
## We create an initial comment with some useful help to the user
6666
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # ratchet:actions/[email protected]
6767
with:
@@ -84,7 +84,7 @@ jobs:
8484
needs.pr-number.outputs.result != '' &&
8585
github.event.workflow_run.conclusion != 'skipped'
8686
steps:
87-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
87+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
8888
- name: Download and Extract Artifacts
8989
id: extract
9090
env:
@@ -109,14 +109,14 @@ jobs:
109109
echo "HAS_TEST_ARTIFACTS=false" >> $GITHUB_OUTPUT
110110
fi
111111
112-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
112+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
113113
with:
114114
token: ${{ secrets.ERLANG_TOKEN }}
115115
repository: 'erlang/erlang.github.io'
116116
path: erlang.github.io
117117

118118
- name: Publish CT Test Results
119-
uses: EnricoMi/publish-unit-test-result-action@afb2984f4d89672b2f9d9c13ae23d53779671984 # ratchet:EnricoMi/publish-unit-test-result-action@v2.19.0
119+
uses: EnricoMi/publish-unit-test-result-action@3a74b2957438d0b6e2e61d67b05318aa25c9e6c6 # v2.20.0
120120
if: steps.extract.outputs.HAS_TEST_ARTIFACTS == 'true'
121121
with:
122122
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
@@ -35,8 +35,8 @@ jobs:
3535
concurrency: erlang.github.io-deploy
3636
runs-on: ubuntu-20.04
3737
steps:
38-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
39-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
38+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
39+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4040
with:
4141
token: ${{ secrets.ERLANG_TOKEN }}
4242
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
@@ -41,7 +41,7 @@ jobs:
4141
contents: write
4242
actions: write
4343
steps:
44-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
44+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4545
## We need to login to the package registry in order to pull
4646
## the base debian image.
4747
- name: Docker login

.github/workflows/update-base.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
fail-fast: false
4848

4949
steps:
50-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
50+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
5151
with:
5252
ref: ${{ matrix.branch }}
5353
- name: Cleanup GH Runner
5454
shell: bash
5555
run: .github/scripts/cleanup_gh_runner.sh
5656
- name: Docker login
57-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # ratchet:docker/login-action@v3.4.0
57+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
5858
with:
5959
registry: ghcr.io
6060
username: ${{ github.actor }}

0 commit comments

Comments
 (0)