Skip to content

Commit 1eddaf6

Browse files
authored
Merge branch 'staging' into dependabot/npm_and_yarn/app/npm_and_yarn-bf05dc1ecf
2 parents 965967f + 856fdb4 commit 1eddaf6

5 files changed

Lines changed: 22 additions & 22 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2222

2323
- name: Setup Node
24-
uses: actions/setup-node@v6
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
2525
with:
2626
node-version: "24"
2727
cache: "npm"
@@ -42,12 +42,12 @@ jobs:
4242
run: npm run lint
4343

4444
- name: Setup Python
45-
uses: actions/setup-python@v6
45+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
4646
with:
4747
python-version: "3.12"
4848

4949
- name: Install uv
50-
uses: astral-sh/setup-uv@v7
50+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
5151
with:
5252
version: "latest"
5353

@@ -58,10 +58,10 @@ jobs:
5858
runs-on: ubuntu-latest
5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v6
61+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
6262

6363
- name: Build Docker image
64-
uses: docker/build-push-action@v7
64+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
6565
with:
6666
context: .
6767
file: ./Dockerfile

.github/workflows/playwright.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ jobs:
2525
ports:
2626
- 6379:6379
2727
steps:
28-
- uses: actions/checkout@v6
28+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2929

30-
- uses: actions/setup-node@v6
30+
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
3131
with:
3232
node-version: 24
3333
cache: 'npm'
3434
cache-dependency-path: |
3535
package-lock.json
3636
app/package-lock.json
3737
38-
- uses: actions/setup-python@v6
38+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
3939
with:
4040
python-version: '3.12'
4141

4242
- name: Install uv
43-
uses: astral-sh/setup-uv@v7
43+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
4444
with:
4545
version: "latest"
4646

@@ -66,7 +66,7 @@ jobs:
6666
6767
- name: Cache Playwright browsers
6868
id: playwright-cache
69-
uses: actions/cache@v5
69+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
7070
with:
7171
path: ~/.cache/ms-playwright
7272
key: playwright-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('package-lock.json') }}
@@ -112,7 +112,7 @@ jobs:
112112
mkdir -p playwright-report
113113
mkdir -p playwright-report/artifacts
114114
115-
- uses: actions/upload-artifact@v7
115+
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
116116
if: always()
117117
with:
118118
name: playwright-report-shard-${{ matrix.shard }}
@@ -121,7 +121,7 @@ jobs:
121121

122122
- name: Upload failed test screenshots
123123
if: always()
124-
uses: actions/upload-artifact@v7
124+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
125125
with:
126126
name: failed-test-screenshots-shard-${{ matrix.shard }}
127127
path: playwright-report/artifacts/

.github/workflows/pypi-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
id-token: write
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1616

1717
- name: Install uv
18-
uses: astral-sh/setup-uv@v5
18+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
1919

2020
- name: Build package
2121
run: uv build
2222

2323
- name: Publish to PyPI
24-
uses: pypa/gh-action-pypi-publish@release/v1
24+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1

.github/workflows/release-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1616

1717
- name: Set tags
1818
run: |
@@ -23,13 +23,13 @@ jobs:
2323
fi
2424
2525
- name: Login to DockerHub
26-
uses: docker/login-action@v4
26+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
2727
with:
2828
username: ${{ secrets.DOCKER_USERNAME }}
2929
password: ${{ secrets.DOCKER_PASSWORD }}
3030

3131
- name: Build image
32-
uses: docker/build-push-action@v7
32+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
3333
with:
3434
context: .
3535
file: ./Dockerfile

uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)