Skip to content

Commit 8aa95d1

Browse files
Update GitHub Actions
1 parent 05e81a8 commit 8aa95d1

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

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

Lines changed: 4 additions & 4 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@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
29+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
3232
run-id: ${{ inputs.artifact_run_id }}
@@ -42,16 +42,16 @@ jobs:
4242

4343
- name: Extract metadata (tags, labels) for Docker
4444
id: meta
45-
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
45+
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
4646
with:
4747
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4848
tags: ${{ inputs.docker_tags}}
4949

5050
- name: Set up Docker Buildx
51-
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
51+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
5252

5353
- name: Build and push Docker image
54-
uses: docker/build-push-action@b32b51a8eda65d6793cd0494a773d4f6bcef32dc # v6.11.0
54+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
5555
with:
5656
context: .
5757
platforms: linux/amd64,linux/arm64

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Checkout code
2626
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2727
- name: Yarn cache
28-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
28+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
2929
with:
3030
cache: "yarn"
3131
node-version-file: ".node-version"
@@ -42,7 +42,7 @@ jobs:
4242
VITE_APP_VERSION: ${{ inputs.vite_app_version }}
4343
NODE_OPTIONS: "--max-old-space-size=4096"
4444
- name: Upload Artifact
45-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
45+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
4646
with:
4747
name: build-output
4848
path: dist

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Deploy to call.element.dev
36-
uses: actions/github-script@v6
36+
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
3737
with:
3838
github-token: ${{ secrets.DEVELOP_DEPLOYMENT_TOKEN }}
3939
script: |

.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@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
49+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # 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
@@ -9,7 +9,7 @@ jobs:
99
- name: Checkout code
1010
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1111
- name: Yarn cache
12-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
12+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1313
with:
1414
cache: "yarn"
1515
node-version-file: ".node-version"

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
id: current-time
3535
run: echo "unix_time=$(date +'%s')" >> $GITHUB_OUTPUT
3636
- name: 📥 Download artifact
37-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
37+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
3838
with:
3939
github-token: ${{ secrets.GITHUB_TOKEN }}
4040
run-id: ${{ github.event.workflow_run.id || github.run_id }}
@@ -46,7 +46,7 @@ jobs:
4646
run: |
4747
tar --numeric-owner --transform "s/dist/element-call-${TARBALL_VERSION}/" -cvzf element-call-${TARBALL_VERSION}.tar.gz dist
4848
- name: Upload
49-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
49+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
5050
env:
5151
GITHUB_TOKEN: ${{ github.token }}
5252
with:

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout code
1212
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
- name: Yarn cache
14-
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
14+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1515
with:
1616
cache: "yarn"
1717
node-version-file: ".node-version"
@@ -20,7 +20,7 @@ jobs:
2020
- name: Vitest
2121
run: "yarn run test:coverage"
2222
- name: Upload to codecov
23-
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5
23+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
2424
env:
2525
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2626
with:

.github/workflows/translations-download.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Checkout the code
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717

18-
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
18+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1919
with:
2020
cache: "yarn"
2121
node-version-file: ".node-version"
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Create Pull Request
4141
id: cpr
42-
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6
42+
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284 # v7.0.7
4343
with:
4444
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
4545
branch: actions/localazy-download

0 commit comments

Comments
 (0)