Skip to content

Commit d8c4bf3

Browse files
Pin dependencies
1 parent 0f5f26c commit d8c4bf3

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

.github/workflows/publish-deno.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
id-token: write
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2222

2323
- name: Get current version
2424
id: current_version

.github/workflows/publish-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
id-token: write
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2828

2929
- name: Install mise
30-
uses: jdx/mise-action@v2
30+
uses: jdx/mise-action@c37c93293d6b742fc901e1406b8f764f6fb19dac # v2
3131

3232
- name: Install tools
3333
run: mise install
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: Publish to PyPI
6363
if: ${{ steps.current_version.outputs.version != steps.published_version.outputs.version && github.event_name == 'workflow_run' }}
64-
uses: pypa/gh-action-pypi-publish@release/v1
64+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1
6565
with:
6666
packages-dir: src/clients/python/dist/
6767
verbose: true

.github/workflows/release-binary.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
permissions:
1616
contents: write
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1919

2020
- name: Download all artifacts
21-
uses: actions/download-artifact@v4
21+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
2222
with:
2323
github-token: ${{secrets.GITHUB_TOKEN}}
2424
run-id: ${{github.event.workflow_run.id}}
@@ -43,7 +43,7 @@ jobs:
4343
4444
- name: Create Release
4545
if: steps.check_artifacts.outputs.artifacts_found == 'true'
46-
uses: ncipollo/release-action@v1
46+
uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd # v1
4747
with:
4848
tag: webview-v${{ steps.get_version.outputs.version }}
4949
name: Release ${{ steps.get_version.outputs.version }}

.github/workflows/rust-binary.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
binary_name: webview-mac-arm64
3333
platform: macos
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
3636

37-
- uses: jdx/mise-action@v2
37+
- uses: jdx/mise-action@c37c93293d6b742fc901e1406b8f764f6fb19dac # v2
3838
env:
3939
RUSTUP_TARGET: ${{ matrix.target }}
4040
MISE_ENV: ${{ matrix.platform }}
@@ -44,7 +44,7 @@ jobs:
4444
experimental: true
4545

4646
- name: Setup Rust cache
47-
uses: Swatinem/rust-cache@v2
47+
uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
4848
with:
4949
cache-on-failure: true
5050
shared-key: "binary-${{ matrix.target }}"
@@ -114,7 +114,7 @@ jobs:
114114
mv target/${{ matrix.target }}/${{ steps.build_flags.outputs.build_type }}/webview.exe ${{ matrix.binary_name }}-devtools.exe
115115
116116
- name: Upload artifact
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
118118
with:
119119
name: ${{ steps.build_flags.outputs.build_type }}-binary-${{ matrix.target }}
120120
path: ${{ matrix.binary_name }}*

.github/workflows/verify.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1010

11-
- uses: jdx/mise-action@v2
11+
- uses: jdx/mise-action@c37c93293d6b742fc901e1406b8f764f6fb19dac # v2
1212
with:
1313
cache_key_prefix: mise-{{hashFiles('mise.toml')}}
1414
experimental: true
1515

1616
- name: Setup Rust cache
17-
uses: Swatinem/rust-cache@v2
17+
uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
1818
with:
1919
cache-on-failure: true
2020
shared-key: mise-{{hashFiles('mise.toml')}}
@@ -25,9 +25,9 @@ jobs:
2525
publishable:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2929

30-
- uses: jdx/mise-action@v2
30+
- uses: jdx/mise-action@c37c93293d6b742fc901e1406b8f764f6fb19dac # v2
3131
with:
3232
experimental: true
3333

@@ -37,15 +37,15 @@ jobs:
3737
codegen-up-to-date:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
4141

42-
- uses: jdx/mise-action@v2
42+
- uses: jdx/mise-action@c37c93293d6b742fc901e1406b8f764f6fb19dac # v2
4343
with:
4444
cache_key_prefix: mise-{{hashFiles('mise.toml')}}
4545
experimental: true
4646

4747
- name: Setup Rust cache
48-
uses: Swatinem/rust-cache@v2
48+
uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
4949
with:
5050
cache-on-failure: true
5151
shared-key: "mise-{{hashFiles('mise.toml')}}"

0 commit comments

Comments
 (0)