Skip to content

Commit cf0cb2e

Browse files
authored
Merge pull request #3153 from element-hq/renovate/github-actions
Pin dependencies
2 parents 2b35db3 + e7086ff commit cf0cb2e

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

.github/workflows/blocked.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
pull-requests: read
1111
steps:
1212
- name: Add notice
13-
uses: actions/github-script@v7
13+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
1414
if: contains(github.event.pull_request.labels.*.name, 'X-Blocked')
1515
with:
1616
script: |

.github/workflows/build-and-publish-docker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2727

2828
- name: 📥 Download artifact
29-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
29+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
3232
run-id: ${{ inputs.artifact_run_id }}
3333
name: build-output-full
3434
path: dist
3535

3636
- name: Log in to container registry
37-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
37+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
3838
with:
3939
registry: ${{ env.REGISTRY }}
4040
username: ${{ github.actor }}

.github/workflows/build-element-call.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Enable Corepack
3232
run: corepack enable
3333
- name: Yarn cache
34-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
34+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
3535
with:
3636
cache: "yarn"
3737
node-version-file: ".node-version"
@@ -60,7 +60,7 @@ jobs:
6060
VITE_APP_VERSION: ${{ inputs.vite_app_version }}
6161
NODE_OPTIONS: "--max-old-space-size=4096"
6262
- name: Upload Artifact
63-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
63+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
6464
with:
6565
name: build-output-${{ inputs.package }}
6666
path: dist

.github/workflows/deploy-to-netlify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
Exercise caution. Use test accounts.
4747
4848
- name: 📥 Download artifact
49-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
49+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
5050
with:
5151
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
5252
run-id: ${{ inputs.artifact_run_id }}

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Enable Corepack
1212
run: corepack enable
1313
- name: Yarn cache
14-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
14+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
1515
with:
1616
cache: "yarn"
1717
node-version-file: ".node-version"

.github/workflows/publish-embedded-packages.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Determine filename
4343
run: echo "FILENAME_PREFIX=element-call-embedded-${VERSION:1}" >> "$GITHUB_ENV"
4444
- name: 📥 Download built element-call artifact
45-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
45+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
4848
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -73,7 +73,7 @@ jobs:
7373
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
7474

7575
- name: 📥 Download built element-call artifact
76-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
76+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
7777
with:
7878
github-token: ${{ secrets.GITHUB_TOKEN }}
7979
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -82,7 +82,7 @@ jobs:
8282

8383
# n.b. We don't enable corepack here because we are using plain npm
8484
- name: Setup node
85-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
85+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
8686
with:
8787
node-version-file: .node-version
8888
registry-url: "https://registry.npmjs.org"
@@ -108,7 +108,7 @@ jobs:
108108
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
109109

110110
- name: 📥 Download built element-call artifact
111-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
111+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
112112
with:
113113
github-token: ${{ secrets.GITHUB_TOKEN }}
114114
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -151,7 +151,7 @@ jobs:
151151
path: element-call
152152

153153
- name: 📥 Download built element-call artifact
154-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
154+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
155155
with:
156156
github-token: ${{ secrets.GITHUB_TOKEN }}
157157
run-id: ${{ github.event.workflow_run.id || github.run_id }}

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Determine filename
3232
run: echo "FILENAME_PREFIX=element-call-${VERSION:1}" >> "$GITHUB_ENV"
3333
- name: 📥 Download built element-call artifact
34-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
34+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
3535
with:
3636
github-token: ${{ secrets.GITHUB_TOKEN }}
3737
run-id: ${{ github.event.workflow_run.id || github.run_id }}

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Enable Corepack
1414
run: corepack enable
1515
- name: Yarn cache
16-
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
16+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
1717
with:
1818
cache: "yarn"
1919
node-version-file: ".node-version"
@@ -33,10 +33,10 @@ jobs:
3333
timeout-minutes: 10
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3737
- name: Enable Corepack
3838
run: corepack enable
39-
- uses: actions/setup-node@v4
39+
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
4040
with:
4141
cache: "yarn"
4242
node-version-file: ".node-version"
@@ -52,7 +52,7 @@ jobs:
5252
run: cp config/config.devenv.json public/config.json
5353
- name: Run Playwright tests
5454
run: yarn playwright test
55-
- uses: actions/upload-artifact@v4
55+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
5656
if: ${{ !cancelled() }}
5757
with:
5858
name: playwright-report

.github/workflows/translations-download.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Enable Corepack
1919
run: corepack enable
2020

21-
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
21+
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
2222
with:
2323
cache: "yarn"
2424
node-version-file: ".node-version"
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Create Pull Request
4444
id: cpr
45-
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284 # v7.0.7
45+
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
4646
with:
4747
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
4848
branch: actions/localazy-download

0 commit comments

Comments
 (0)