Skip to content

Commit f62f543

Browse files
committed
fix: pin SHA for checkout action
1 parent e285008 commit f62f543

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build_app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
$installed = "${{ github.workspace }}\vcpkg\installed\arm64-windows"
3636
echo "OPENSSL_DIR=$installed" >> $env:GITHUB_ENV
3737
- name: checkout repository
38-
uses: actions/checkout@v6
38+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
3939
with:
4040
fetch-depth: 0
4141
path: ${{ github.workspace }}/repo

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5454
steps:
5555
- name: Checkout repository
56-
uses: actions/checkout@v4
56+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
5757

5858
# Add any setup steps before running the `github/codeql-action/init` action.
5959
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v6
27+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
2828
- name: setup uv
2929
uses: "astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57"
3030
- name: install dev dependencies

.github/workflows/localization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: read
2424
steps:
2525
- name: checkout repository
26-
uses: actions/checkout@v6
26+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
2727
- name: setup uv
2828
uses: "astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57"
2929
- name: Install dependencies

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: checkout repository
13-
uses: actions/checkout@v6
13+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
1414
- name: run ruff
1515
uses: "astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6"

.github/workflows/update_localization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: checkout repository
17-
uses: actions/checkout@v6
17+
uses: "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd"
1818
- name: download previous translation template from successful CI run
1919
shell: bash
2020
env:

0 commit comments

Comments
 (0)