Skip to content

Commit da2ce68

Browse files
Update GitHub Actions
1 parent 471917b commit da2ce68

9 files changed

+21
-21
lines changed

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

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

2828
- name: 📥 Download artifact
29-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
29+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
3232
run-id: ${{ inputs.artifact_run_id }}
@@ -53,7 +53,7 @@ jobs:
5353
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
5454

5555
- name: Build and push Docker image
56-
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
56+
uses: docker/build-push-action@14487ce63c7a62a4a324b0bfb37086795e31c6c1 # v6.16.0
5757
with:
5858
context: .
5959
platforms: linux/amd64,linux/arm64

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

Lines changed: 1 addition & 1 deletion
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@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
34+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
3535
with:
3636
cache: "yarn"
3737
node-version-file: ".node-version"

.github/workflows/changelog-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
pr-changelog-label:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: yogevbd/enforce-label-action@2.1.0
10+
- uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 # 2.2.2
1111
with:
1212
REQUIRED_LABELS_ANY: "PR-Bug-Fix,PR-Documentation,PR-Task,PR-Feature,PR-Improvement,PR-Developer-Experience,dependencies"
1313
REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one 'PR-' label"

.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@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
49+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # 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@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
14+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1515
with:
1616
cache: "yarn"
1717
node-version-file: ".node-version"

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Determine filename
7272
run: echo "FILENAME_PREFIX=element-call-embedded-${{ needs.versioning.outputs.UNPREFIXED_VERSION }}" >> "$GITHUB_ENV"
7373
- name: 📥 Download built element-call artifact
74-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
74+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
7575
with:
7676
github-token: ${{ secrets.GITHUB_TOKEN }}
7777
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -83,7 +83,7 @@ jobs:
8383
run: find ${{ env.FILENAME_PREFIX }} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${{ env.FILENAME_PREFIX }}.sha256
8484
- name: Upload
8585
if: ${{ needs.versioning.outputs.DRY_RUN == 'false' }}
86-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
86+
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2
8787
with:
8888
files: |
8989
${{ env.FILENAME_PREFIX }}.tar.gz
@@ -104,7 +104,7 @@ jobs:
104104
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
105105

106106
- name: 📥 Download built element-call artifact
107-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
107+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
108108
with:
109109
github-token: ${{ secrets.GITHUB_TOKEN }}
110110
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -113,7 +113,7 @@ jobs:
113113

114114
# n.b. We don't enable corepack here because we are using plain npm
115115
- name: Setup node
116-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
116+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
117117
with:
118118
node-version-file: .node-version
119119
registry-url: "https://registry.npmjs.org"
@@ -145,15 +145,15 @@ jobs:
145145
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
146146

147147
- name: 📥 Download built element-call artifact
148-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
148+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
149149
with:
150150
github-token: ${{ secrets.GITHUB_TOKEN }}
151151
run-id: ${{ github.event.workflow_run.id || github.run_id }}
152152
name: build-output-embedded
153153
path: embedded/android/lib/src/main/assets/element-call
154154

155155
- name: ☕️ Setup Java
156-
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4
156+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
157157
with:
158158
distribution: "temurin"
159159
java-version: "17"
@@ -200,7 +200,7 @@ jobs:
200200
path: element-call
201201

202202
- name: 📥 Download built element-call artifact
203-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
203+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
204204
with:
205205
github-token: ${{ secrets.GITHUB_TOKEN }}
206206
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -260,7 +260,7 @@ jobs:
260260
echo "iOS: ${{ needs.publish_ios.outputs.ARTIFACT_VERSION }}"
261261
- name: Add release notes
262262
if: ${{ needs.versioning.outputs.DRY_RUN == 'false' }}
263-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
263+
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2
264264
with:
265265
append_body: true
266266
body: |

.github/workflows/publish.yaml

Lines changed: 3 additions & 3 deletions
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@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
34+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
3535
with:
3636
github-token: ${{ secrets.GITHUB_TOKEN }}
3737
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -42,7 +42,7 @@ jobs:
4242
- name: Create Checksum
4343
run: find ${{ env.FILENAME_PREFIX }} -type f -print0 | sort -z | xargs -0 sha256sum | tee ${{ env.FILENAME_PREFIX }}.sha256
4444
- name: Upload
45-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
45+
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2
4646
with:
4747
files: |
4848
${{ env.FILENAME_PREFIX }}.tar.gz
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- name: Add release note
71-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
71+
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2
7272
with:
7373
append_body: true
7474
body: |

.github/workflows/test.yaml

Lines changed: 3 additions & 3 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@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
16+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1717
with:
1818
cache: "yarn"
1919
node-version-file: ".node-version"
@@ -22,7 +22,7 @@ jobs:
2222
- name: Vitest
2323
run: "yarn run test:coverage"
2424
- name: Upload to codecov
25-
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
25+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5
2626
env:
2727
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2828
with:
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3737
- name: Enable Corepack
3838
run: corepack enable
39-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
39+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
4040
with:
4141
cache: "yarn"
4242
node-version-file: ".node-version"

.github/workflows/translations-download.yaml

Lines changed: 1 addition & 1 deletion
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@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
21+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2222
with:
2323
cache: "yarn"
2424
node-version-file: ".node-version"

0 commit comments

Comments
 (0)