Skip to content

Commit a0507e5

Browse files
committed
Merge remote-tracking branch 'origin/master' into main-graph-v2-backend
2 parents f3f99d4 + 7fddf70 commit a0507e5

74 files changed

Lines changed: 13089 additions & 4572 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/all-checks-pass.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
checks: read
1212
steps:
1313
- name: GitHub Checks
14-
uses: poseidon/wait-for-status-checks@v0.6.0
14+
uses: poseidon/wait-for-status-checks@899c768d191b56eef585c18f8558da19e1f3e707 # v0.6.0
1515
with:
16-
token: ${{ secrets.GITHUB_TOKEN }}
16+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/build-private-images-ghcr.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: Docker meta
2525
id: meta
26-
uses: docker/metadata-action@v5.0.0
26+
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
2727
env:
2828
DOCKER_METADATA_PR_HEAD_SHA: true
2929
with:
@@ -35,18 +35,18 @@ jobs:
3535
type=sha
3636
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@v3
38+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
3939

4040
- name: Login to GitHub Container Registry
41-
uses: docker/login-action@v3
41+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
4242
with:
4343
registry: ghcr.io
4444
username: ${{ github.actor }}
4545
password: ${{ secrets.GITHUB_TOKEN }}
4646

4747
- name: Build and push
4848
id: docker_build
49-
uses: docker/build-push-action@v6
49+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
5050
with:
5151
push: true
5252
tags: ${{ steps.meta.outputs.tags }}
@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: Notify team on failure
6464
if: ${{ failure() && github.ref == 'refs/heads/master' }}
65-
uses: fjogeleit/http-request-action@v2
65+
uses: fjogeleit/http-request-action@551353b829c3646756b2ec2b3694f819d7957495 # v2.0.0
6666
with:
6767
url: ${{ secrets.BUILD_NOTIFICATION_URL }}
6868
method: 'POST'
@@ -84,7 +84,7 @@ jobs:
8484
8585
- name: Notify team on success
8686
if: ${{ success() && github.ref == 'refs/heads/master' }}
87-
uses: fjogeleit/http-request-action@v2
87+
uses: fjogeleit/http-request-action@551353b829c3646756b2ec2b3694f819d7957495 # v2.0.0
8888
with:
8989
url: ${{ secrets.BUILD_NOTIFICATION_URL }}
9090
method: 'POST'

.github/workflows/build-public-images-ghcr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,23 @@ jobs:
3232
3333
- name: Docker meta
3434
id: meta
35-
uses: docker/metadata-action@v5
35+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
3636
with:
3737
images: ${{ env.GHCR_REPO }}
3838

3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@v3
40+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
4141

4242
- name: Login to GitHub Container Registry
43-
uses: docker/login-action@v3
43+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
4444
with:
4545
registry: ghcr.io
4646
username: ${{ github.actor }}
4747
password: ${{ secrets.GITHUB_TOKEN }}
4848

4949
- name: Build
5050
id: docker_build
51-
uses: docker/build-push-action@v6
51+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
5252
with:
5353
labels: ${{ steps.meta.outputs.labels }}
5454
outputs: type=image,name=${{ env.GHCR_REPO }},push-by-digest=true,name-canonical=true,push=true
@@ -68,7 +68,7 @@ jobs:
6868
touch "${{ runner.temp }}/digests/${digest#sha256:}"
6969
7070
- name: Upload digest
71-
uses: actions/upload-artifact@v6
71+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7272
with:
7373
name: digests-${{ env.PLATFORM_PAIR }}
7474
path: ${{ runner.temp }}/digests/*
@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Notify team on failure
7979
if: ${{ failure() }}
80-
uses: fjogeleit/http-request-action@v2
80+
uses: fjogeleit/http-request-action@551353b829c3646756b2ec2b3694f819d7957495 # v2.0.0
8181
with:
8282
url: ${{ secrets.BUILD_NOTIFICATION_URL }}
8383
method: "POST"
@@ -91,21 +91,21 @@ jobs:
9191

9292
steps:
9393
- name: Download digests
94-
uses: actions/download-artifact@v7
94+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
9595
with:
9696
path: ${{ runner.temp }}/digests
9797
pattern: digests-*
9898
merge-multiple: true
9999

100-
- uses: docker/login-action@v3
100+
- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
101101
with:
102102
registry: ghcr.io
103103
username: ${{ github.actor }}
104104
password: ${{ secrets.GITHUB_TOKEN }}
105105

106-
- uses: docker/setup-buildx-action@v3
106+
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
107107

108-
- uses: docker/metadata-action@v5
108+
- uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
109109
id: meta
110110
with:
111111
images: ${{ env.GHCR_REPO }}

.github/workflows/codespell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
codespell:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v6
14-
- uses: codespell-project/actions-codespell@v2
13+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
14+
- uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1
1515
with:
1616
check_filenames: true
1717
ignore_words_file: .codespellignore

.github/workflows/comment-preview-url.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Comment with preview URL
19-
uses: thollander/actions-comment-pull-request@v3.0.1
19+
uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1
2020
with:
2121
message: |
2222
<div align="center">

.github/workflows/elixir.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@ jobs:
5050
--health-timeout 5s
5151
--health-retries 5
5252
steps:
53-
- uses: actions/checkout@v6
53+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5454
with:
5555
fetch-depth: 0
5656

57-
- uses: marocchino/tool-versions-action@v1
57+
- uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0
5858
id: versions
59-
- uses: erlef/setup-beam@v1
59+
- uses: erlef/setup-beam@ee09b1e59bb240681c382eb1f0abc6a04af72764 # v1.23.0
6060
with:
6161
elixir-version: ${{ steps.versions.outputs.elixir }}
6262
otp-version: ${{ steps.versions.outputs.erlang }}
6363

64-
- uses: actions/cache@v5
64+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6565
with:
6666
path: |
6767
deps
@@ -76,7 +76,7 @@ jobs:
7676
${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-refs/heads/master-
7777
7878
- name: Check for changes in tracker/**
79-
uses: dorny/paths-filter@v3
79+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
8080
id: changes
8181
with:
8282
filters: |
@@ -149,19 +149,19 @@ jobs:
149149
shardIndex: [1, 2, 3, 4]
150150
shardTotal: [4]
151151
steps:
152-
- uses: actions/checkout@v6
152+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
153153
with:
154154
fetch-depth: 0
155155

156-
- uses: marocchino/tool-versions-action@v1
156+
- uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0
157157
id: versions
158158

159-
- uses: erlef/setup-beam@v1
159+
- uses: erlef/setup-beam@ee09b1e59bb240681c382eb1f0abc6a04af72764 # v1.23.0
160160
with:
161161
elixir-version: ${{ steps.versions.outputs.elixir }}
162162
otp-version: ${{ steps.versions.outputs.erlang }}
163163

164-
- uses: actions/cache@v5
164+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
165165
with:
166166
path: |
167167
deps
@@ -177,7 +177,7 @@ jobs:
177177
e2e-${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-refs/heads/master-
178178
179179
- name: Cache E2E dependencies and Playwright browsers
180-
uses: actions/cache@v5
180+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
181181
id: playwright-cache
182182
with:
183183
path: |
@@ -189,7 +189,7 @@ jobs:
189189
playwright-${{ runner.os }}-
190190
191191
- name: Check for changes in tracker/**
192-
uses: dorny/paths-filter@v3
192+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
193193
id: changes
194194
with:
195195
filters: |
@@ -225,7 +225,7 @@ jobs:
225225

226226
- name: Upload E2E blob report to GitHub Actions Artifacts
227227
if: ${{ !cancelled() }}
228-
uses: actions/upload-artifact@v6
228+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
229229
with:
230230
name: e2e-blob-report-${{ matrix.shardIndex }}
231231
path: e2e/blob-report
@@ -237,8 +237,8 @@ jobs:
237237
timeout-minutes: 15
238238
runs-on: ubuntu-latest
239239
steps:
240-
- uses: actions/checkout@v6
241-
- uses: actions/setup-node@v6
240+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
241+
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
242242
with:
243243
node-version: 23.2.0
244244
cache: 'npm'
@@ -247,7 +247,7 @@ jobs:
247247
run: npm --prefix ./e2e ci
248248

249249
- name: Download blob reports from GitHub Actions Artifacts
250-
uses: actions/download-artifact@v7
250+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
251251
with:
252252
path: all-e2e-blob-reports
253253
pattern: e2e-blob-report-*
@@ -263,19 +263,19 @@ jobs:
263263
MIX_ENV: test
264264
runs-on: ubuntu-latest
265265
steps:
266-
- uses: actions/checkout@v6
266+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
267267
with:
268268
fetch-depth: 0
269269

270-
- uses: marocchino/tool-versions-action@v1
270+
- uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0
271271
id: versions
272272

273-
- uses: erlef/setup-beam@v1
273+
- uses: erlef/setup-beam@ee09b1e59bb240681c382eb1f0abc6a04af72764 # v1.23.0
274274
with:
275275
elixir-version: ${{ steps.versions.outputs.elixir }}
276276
otp-version: ${{ steps.versions.outputs.erlang }}
277277

278-
- uses: actions/cache@v5
278+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
279279
with:
280280
path: |
281281
deps

.github/workflows/migrations-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: dorny/paths-filter@v3
15+
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
1616
id: changes
1717
with:
1818
list-files: json

.github/workflows/node.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2020
- name: Read .tool-versions
21-
uses: marocchino/tool-versions-action@v1
21+
uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0
2222
id: versions
2323
- name: Set up Node
24-
uses: actions/setup-node@v6
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
node-version: ${{steps.versions.outputs.nodejs}}
2727
- run: npm install --prefix ./assets

.github/workflows/publish-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v6
25+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2626

2727
- name: Read .tool-versions
28-
uses: marocchino/tool-versions-action@v1
28+
uses: marocchino/tool-versions-action@18a164fa2b0db1cc1edf7305fcb17ace36d1c306 # v1.2.0
2929
id: versions
3030

3131
- name: Set up Elixir
32-
uses: erlef/setup-beam@v1
32+
uses: erlef/setup-beam@ee09b1e59bb240681c382eb1f0abc6a04af72764 # v1.23.0
3333
with:
3434
elixir-version: ${{steps.versions.outputs.elixir}}
3535
otp-version: ${{ steps.versions.outputs.erlang}}
3636

3737
- name: Restore Elixir dependencies cache
38-
uses: actions/cache@v5
38+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
3939
with:
4040
path: |
4141
deps
@@ -51,7 +51,7 @@ jobs:
5151
run: mix docs
5252

5353
- name: Deploy to GitHub Pages
54-
uses: peaceiris/actions-gh-pages@v4
54+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
5555
with:
5656
github_token: ${{ secrets.GITHUB_TOKEN }}
5757
publish_dir: ./doc

.github/workflows/terraform-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3131

3232
- name: Setup Terraform
33-
uses: hashicorp/setup-terraform@v3
33+
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
3434
with:
3535
cli_config_credentials_token: ${{ secrets.TF_CLOUD_CHECKLY_API_TOKEN }}
3636

@@ -52,7 +52,7 @@ jobs:
5252
run: terraform plan -no-color
5353
continue-on-error: true
5454

55-
- uses: actions/github-script@v8
55+
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
5656
if: github.event_name == 'pull_request'
5757
env:
5858
PLAN: "terraform\n${{ steps.plan.outputs.stdout }}"

0 commit comments

Comments
 (0)