Skip to content

Commit 0434e47

Browse files
committed
chore(deps): update github-actions
1 parent b2e2bc4 commit 0434e47

File tree

12 files changed

+41
-41
lines changed

12 files changed

+41
-41
lines changed

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

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

4949
- name: Cache BASE image
50-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
50+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5151
if: inputs.TYPE == '64-bit' || inputs.TYPE == 'clang'
5252
with:
5353
path: otp_docker_base.tar
5454
key: ${{ runner.os }}-${{ hashFiles('.github/dockerfiles/Dockerfile.ubuntu-base', '.github/scripts/build-base-image.sh') }}-${{ steps.date.outputs.date }}-${{ hashFiles('OTP_VERSION') }}
5555

5656
- name: Docker login
57-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
57+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5858
with:
5959
registry: ghcr.io
6060
username: ${{ github.repository_owner }}
@@ -67,7 +67,7 @@ runs:
6767
- name: Cache pre-built src
6868
id: cache-src
6969
if: inputs.BUILD_IMAGE == 'true'
70-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
70+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
7171
with:
7272
path: otp_src.tar.gz
7373
key: prebuilt-src-${{ github.ref_name }}-${{ github.sha }}
@@ -81,7 +81,7 @@ runs:
8181
- name: Cache pre-built binaries
8282
id: cache-binary
8383
if: inputs.BUILD_IMAGE == 'true' && steps.cache-src.outputs.cache-hit == 'true'
84-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
84+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
8585
with:
8686
path: otp_cache.tar.gz
8787
key: prebuilt-cache-${{ inputs.TYPE }}-${{ github.ref_name }}-${{ github.sha }}

.github/actions/ossf-compiler-flags-scanner/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ inputs:
2828
runs:
2929
using: composite
3030
steps:
31-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
31+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3232
with:
3333
repository: ossf/wg-best-practices-os-developers
3434
sparse-checkout: docs/Compiler-Hardening-Guides/compiler-options-scraper
@@ -57,6 +57,6 @@ runs:
5757
# Upload the results to GitHub's code scanning dashboard.
5858
- name: "Upload to code-scanning"
5959
if: ${{ !cancelled() && inputs.upload == 'true' }}
60-
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # ratchet:github/codeql-action/upload-sarif@v3.29.7
60+
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # ratchet:github/codeql-action/upload-sarif@v3.31.0
6161
with:
6262
sarif_file: results.sarif

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

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

.github/workflows/license-scanner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run-scan:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
38+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3939
with:
4040
fetch-depth: '0'
4141
- uses: erlef/setup-beam@e6d7c94229049569db56a7ad5a540c051a010af9 # v1.20.4

.github/workflows/main.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
build-c-code: ${{ steps.c-code-changes.outputs.changes != '[]' || env.FULL_BUILD_AND_CHECK == 'true' }}
6969
all: ${{ steps.apps.outputs.all }}
7070
steps:
71-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
71+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
7272
- uses: ./.github/actions/build-base-image
7373
with:
7474
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -106,14 +106,14 @@ jobs:
106106
with:
107107
filters: .github/scripts/c-code-path-filters.yaml
108108
- name: Cache pre-built src
109-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
109+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
110110
with:
111111
path: otp_src.tar.gz
112112
key: prebuilt-src-${{ github.ref_name }}-${{ github.sha }}
113113
restore-keys: |
114114
prebuilt-src-${{ github.base_ref }}-${{ github.event.pull_request.base.sha }}
115115
- name: Cache pre-built binaries
116-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
116+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
117117
with:
118118
path: otp_cache.tar.gz
119119
key: prebuilt-cache-64-bit-${{ github.ref_name }}-${{ github.sha }}
@@ -197,7 +197,7 @@ jobs:
197197
WXWIDGETS_VERSION: 3.2.6
198198
MACOS_VERSION: 15
199199
steps:
200-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
200+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
201201

202202
- name: Download source archive
203203
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # ratchet:actions/[email protected]
@@ -206,7 +206,7 @@ jobs:
206206

207207
- name: Cache wxWidgets
208208
id: wxwidgets-cache
209-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
209+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
210210
with:
211211
path: wxWidgets
212212
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}-${{ hashFiles('.github/scripts/build-macos-wxwidgets.sh') }}-${{ env.MACOS_VERSION }}
@@ -246,7 +246,7 @@ jobs:
246246
needs: pack
247247
if: needs.pack.outputs.build-c-code == 'true'
248248
steps:
249-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
249+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
250250
- name: Download source archive
251251
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # ratchet:actions/[email protected]
252252
with:
@@ -297,7 +297,7 @@ jobs:
297297
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")
298298
299299
- name: Cache wxWidgets
300-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
300+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
301301
with:
302302
path: wxWidgets
303303
key: wxWidgets-${{ env.WXWIDGETS_VERSION }}-${{ runner.os }}
@@ -385,7 +385,7 @@ jobs:
385385
fail-fast: false
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 }}
@@ -468,7 +468,7 @@ jobs:
468468
fail-fast: false
469469

470470
steps:
471-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
471+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
472472
- uses: ./.github/actions/build-base-image
473473
with:
474474
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -485,7 +485,7 @@ jobs:
485485
with:
486486
name: otp_prebuilt
487487
- name: Build on FreeBSD
488-
uses: vmactions/freebsd-vm@966989c456d41351f095a421f60e71342d3bce41 # v1
488+
uses: vmactions/freebsd-vm@487ce35b96fae3e60d45b521735f5aa436ecfade # v1
489489
with:
490490
usesh: true
491491
copyback: false
@@ -509,7 +509,7 @@ jobs:
509509
runs-on: ubuntu-latest
510510
needs: pack
511511
steps:
512-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
512+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
513513
- uses: ./.github/actions/build-base-image
514514
with:
515515
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -563,7 +563,7 @@ jobs:
563563
runs-on: ubuntu-latest
564564
needs: pack
565565
steps:
566-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
566+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
567567
- uses: ./.github/actions/build-base-image
568568
with:
569569
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -588,7 +588,7 @@ jobs:
588588
# type: ["os_mon","sasl"]
589589
fail-fast: false
590590
steps:
591-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
591+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
592592
- uses: ./.github/actions/build-base-image
593593
with:
594594
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -641,7 +641,7 @@ jobs:
641641
if: ${{ !cancelled() }} # Run even if the need has failed
642642
needs: test
643643
steps:
644-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
644+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
645645
- uses: ./.github/actions/build-base-image
646646
with:
647647
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -718,13 +718,13 @@ jobs:
718718
- name: Use HTTPS instead of SSH for Git cloning
719719
run: git config --global url.https://github.com/.insteadOf ssh://[email protected]/
720720

721-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
721+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
722722
- uses: ./.github/actions/build-base-image
723723
with:
724724
BASE_BRANCH: ${{ env.BASE_BRANCH }}
725725

726726
- name: Fetch Default ORT Config
727-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
727+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
728728
with:
729729
repository: oss-review-toolkit/ort-config
730730
ref: "d2978deb230beae095bb6cfec074b94f1a74fd34"
@@ -891,7 +891,7 @@ jobs:
891891
id-token: write
892892

893893
steps:
894-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
894+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
895895
- uses: ./.github/actions/build-base-image
896896
with:
897897
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -936,7 +936,7 @@ jobs:
936936
echo "tag=${TAG}" >> $GITHUB_OUTPUT
937937
echo "vsn=${VSN}" >> $GITHUB_OUTPUT
938938
939-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
939+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
940940

941941
## Publish the pre-built archive and docs
942942
- name: Download source archive
@@ -1006,7 +1006,7 @@ jobs:
10061006
path: "attestations/*.sigstore"
10071007

10081008
- name: Upload pre-built and doc tar archives
1009-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
1009+
uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090 # v2.4.1
10101010
with:
10111011
name: OTP ${{ steps.tag.outputs.vsn }}
10121012
files: |

.github/workflows/ossf-compiler-flags-scanner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# Only need to read contents
4545
contents: read
4646
steps:
47-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
47+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4848
- name: Create initial pre-release tar
4949
run: .github/scripts/init-pre-release.sh otp_src.tar.gz
5050
- uses: ./.github/actions/build-base-image

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
outputs:
4141
versions: ${{ steps.get-versions.outputs.versions }}
4242
steps:
43-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
43+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4444
- id: get-versions
4545
name: Fetch latest 3 OTP versions
4646
run: |
@@ -60,7 +60,7 @@ jobs:
6060
permissions:
6161
actions: write
6262
steps:
63-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
63+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
6464
with:
6565
ref: ${{ matrix.type }}
6666

@@ -87,6 +87,6 @@ jobs:
8787
# See: https://github.com/github/codeql-action/issues/2117
8888
actions: read
8989
contents: read
90-
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@e69cc6c86b31f1e7e23935bbe7031b50e51082de" # ratchet:google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@v2.1.0"
90+
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.4"
9191
with:
9292
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
@@ -44,7 +44,7 @@ jobs:
4444
outputs:
4545
result: ${{ steps.pr-number.outputs.result }}
4646
steps:
47-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
47+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4848
- uses: erlef/setup-beam@e6d7c94229049569db56a7ad5a540c051a010af9 # v1.20.4
4949
with:
5050
otp-version: '27'
@@ -64,9 +64,9 @@ jobs:
6464
pull-requests: write
6565
if: github.event.action == 'requested' && needs.pr-number.outputs.result != ''
6666
steps:
67-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
67+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
6868
## We create an initial comment with some useful help to the user
69-
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # ratchet:actions/github-script@v7.0.1
69+
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
7070
with:
7171
script: |
7272
const script = require('./.github/scripts/pr-comment.js');
@@ -87,7 +87,7 @@ jobs:
8787
needs.pr-number.outputs.result != '' &&
8888
github.event.workflow_run.conclusion != 'skipped'
8989
steps:
90-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
90+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
9191
- name: Download and Extract Artifacts
9292
id: extract
9393
env:
@@ -124,7 +124,7 @@ jobs:
124124

125125
## Append some useful links and tips to the test results posted by
126126
## Publish CT Test Results
127-
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # ratchet:actions/github-script@v7.0.1
127+
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
128128
if: always()
129129
with:
130130
script: |

.github/workflows/renovate-vendored-deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
if: contains(github.event.pull_request.title, 'Update dependency') && github.actor == 'renovate[bot]'
3636
steps:
37-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
37+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3838
with:
3939
ref: ${{ github.event.pull_request.head.ref }}
4040
fetch-depth: 0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
contents: write
4444
actions: write
4545
steps:
46-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
46+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4747
## We need to login to the package registry in order to pull
4848
## the base debian image.
4949
- name: Docker login

0 commit comments

Comments
 (0)