Skip to content

Commit 388e79d

Browse files
committed
chore(deps): update github-actions
1 parent ce4858f commit 388e79d

14 files changed

+45
-45
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ 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
@@ -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.30.4
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: 22 additions & 22 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.8.1
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 }}
@@ -464,7 +464,7 @@ jobs:
464464
outputs:
465465
vendor-files: ${{ steps.vendor-files.outputs.MODIFIED_FILES != '0' }}
466466
steps:
467-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
467+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
468468
with:
469469
fetch-depth: 0
470470
- name: Get modified vendor files
@@ -503,7 +503,7 @@ jobs:
503503
fail-fast: false
504504

505505
steps:
506-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
506+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
507507
- uses: ./.github/actions/build-base-image
508508
with:
509509
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -520,7 +520,7 @@ jobs:
520520
with:
521521
name: otp_prebuilt
522522
- name: Build on FreeBSD
523-
uses: vmactions/freebsd-vm@966989c456d41351f095a421f60e71342d3bce41 # v1
523+
uses: vmactions/freebsd-vm@487ce35b96fae3e60d45b521735f5aa436ecfade # v1
524524
with:
525525
usesh: true
526526
copyback: false
@@ -549,7 +549,7 @@ jobs:
549549
with:
550550
name: otp_prebuilt
551551
- name: Build on OpenBSD
552-
uses: vmactions/openbsd-vm@0d65352eee1508bab7cb12d130536d3a556be487 # v1.1.8
552+
uses: vmactions/openbsd-vm@1e7cc4fa7727646d3cf5921289b1f5c9d1a88f3c # v1.2.0
553553
with:
554554
usesh: true
555555
copyback: false
@@ -575,7 +575,7 @@ jobs:
575575
with:
576576
name: otp_prebuilt
577577
- name: Build on Solaris
578-
uses: vmactions/solaris-vm@170f1f96f376cf7467cc41627e0c7590932fccaa # v1.1.4
578+
uses: vmactions/solaris-vm@58cbd70c6e051860f9b8f65908cc582938fbbdba # v1.1.5
579579
with:
580580
usesh: true
581581
copyback: false
@@ -595,7 +595,7 @@ jobs:
595595
runs-on: ubuntu-latest
596596
needs: pack
597597
steps:
598-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
598+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
599599
- uses: ./.github/actions/build-base-image
600600
with:
601601
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -649,7 +649,7 @@ jobs:
649649
runs-on: ubuntu-latest
650650
needs: pack
651651
steps:
652-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
652+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
653653
- uses: ./.github/actions/build-base-image
654654
with:
655655
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -674,7 +674,7 @@ jobs:
674674
# type: ["os_mon","sasl"]
675675
fail-fast: false
676676
steps:
677-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
677+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
678678
- uses: ./.github/actions/build-base-image
679679
with:
680680
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -727,7 +727,7 @@ jobs:
727727
if: ${{ !cancelled() }} # Run even if the need has failed
728728
needs: test
729729
steps:
730-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
730+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
731731
- uses: ./.github/actions/build-base-image
732732
with:
733733
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -804,13 +804,13 @@ jobs:
804804
- name: Use HTTPS instead of SSH for Git cloning
805805
run: git config --global url.https://github.com/.insteadOf ssh://[email protected]/
806806

807-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
807+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
808808
- uses: ./.github/actions/build-base-image
809809
with:
810810
BASE_BRANCH: ${{ env.BASE_BRANCH }}
811811

812812
- name: Fetch Default ORT Config
813-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
813+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
814814
with:
815815
repository: oss-review-toolkit/ort-config
816816
ref: "d2978deb230beae095bb6cfec074b94f1a74fd34"
@@ -976,7 +976,7 @@ jobs:
976976
contents: write
977977
id-token: write
978978
steps:
979-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
979+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
980980
- uses: ./.github/actions/build-base-image
981981
with:
982982
BASE_BRANCH: ${{ env.BASE_BRANCH }}
@@ -1027,7 +1027,7 @@ jobs:
10271027
echo "tag=${TAG}" >> $GITHUB_OUTPUT
10281028
echo "vsn=${VSN}" >> $GITHUB_OUTPUT
10291029
1030-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
1030+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
10311031

10321032
## Publish the pre-built archive and docs
10331033
- name: Download source archive
@@ -1097,7 +1097,7 @@ jobs:
10971097
path: "attestations/*.sigstore"
10981098

10991099
- name: Upload pre-built and doc tar archives
1100-
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
1100+
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3
11011101
with:
11021102
name: OTP ${{ steps.tag.outputs.vsn }}
11031103
files: |

.github/workflows/openvex-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
contents: write
4141
pull-requests: write
4242
steps:
43-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
43+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4444
with:
4545
ref: 'master' # '' = default branch
4646

47-
- uses: erlef/setup-beam@5304e04ea2b355f03681464e683d92e3b2f18451 # ratchet:actions/checkout@v1
47+
- uses: erlef/setup-beam@e6d7c94229049569db56a7ad5a540c051a010af9 # v1
4848
with:
4949
otp-version: '28'
5050

.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
outputs:
4040
versions: ${{ steps.get-versions.outputs.versions }}
4141
steps:
42-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4.2.2
42+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4343
- id: get-versions
4444
name: Fetch latest 3 OTP versions
4545
run: |

.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
repository: ${{ github.event.pull_request.head.repo.full_name }}
4040
ref: ${{ github.event.pull_request.head.ref }}

0 commit comments

Comments
 (0)