Skip to content

Commit 20e5fa8

Browse files
committed
chore: Verify GH actions lock file
1 parent 149b1fd commit 20e5fa8

File tree

5 files changed

+144
-46
lines changed

5 files changed

+144
-46
lines changed
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"version": 1,
3+
"generated": "2025-12-20T13:42:38.193Z",
4+
"actions": {
5+
"actions/checkout": [
6+
{
7+
"version": "v6",
8+
"sha": "8e8c483db84b4bee98b60c0593521ed34d9990e8",
9+
"integrity": "sha256-d414ece895ebce08c818601c45ca8489806731838f8eed6356031b3d1877a7a1",
10+
"dependencies": []
11+
}
12+
],
13+
"yesolutions/mirror-action": [
14+
{
15+
"version": "v0.7.0",
16+
"sha": "1708f16cdb28634fd3ba10c5c79abc91f5578a14",
17+
"integrity": "sha256-d14a65d12b637636590fcac0b0283f59e5c0bf6875cbf260d743450ed3036275",
18+
"dependencies": []
19+
}
20+
],
21+
"github/codeql-action/init": [
22+
{
23+
"version": "v4",
24+
"sha": "5d4e8d1aca955e8d8589aabd499c5cae939e33c7",
25+
"integrity": "sha256-ef09cb9701c722ee5f2758840cc6d1cf99017825aaa8aa451a239a7348a70a27",
26+
"dependencies": []
27+
}
28+
],
29+
"github/codeql-action/analyze": [
30+
{
31+
"version": "v4",
32+
"sha": "5d4e8d1aca955e8d8589aabd499c5cae939e33c7",
33+
"integrity": "sha256-ef09cb9701c722ee5f2758840cc6d1cf99017825aaa8aa451a239a7348a70a27",
34+
"dependencies": []
35+
}
36+
],
37+
"SvanBoxel/gitlab-mirror-and-ci-action": [
38+
{
39+
"version": "5c211f993d35256d96b772d995972f434b94e11a",
40+
"sha": "5c211f993d35256d96b772d995972f434b94e11a",
41+
"integrity": "sha256-5e32a00c0cce4bee092fa5150c70651fae8f2636dd1769e29de72677f33d3030",
42+
"dependencies": []
43+
}
44+
],
45+
"oven-sh/setup-bun": [
46+
{
47+
"version": "v2",
48+
"sha": "735343b667d3e6f658f44d0eca948eb6282f2b76",
49+
"integrity": "sha256-476f44de816b487b0b73224d623d1e7a788fa2d183a45647f836302486afe716",
50+
"dependencies": []
51+
}
52+
],
53+
"gjtorikian/gh-actions-lockfile": [
54+
{
55+
"version": "v1.0.0",
56+
"sha": "1d035750cf88b9cceae3ae6d9c351562bd160890",
57+
"integrity": "sha256-129ffa3172da74903a9ecefd5b0db9f7679ae5c53978333b0bf07887ae3c619e",
58+
"dependencies": [
59+
{
60+
"ref": "oven-sh/setup-bun@v2",
61+
"sha": "735343b667d3e6f658f44d0eca948eb6282f2b76",
62+
"integrity": "sha256-476f44de816b487b0b73224d623d1e7a788fa2d183a45647f836302486afe716"
63+
}
64+
]
65+
}
66+
],
67+
"actions/setup-node": [
68+
{
69+
"version": "v6",
70+
"sha": "395ad3262231945c25e8478fd5baf05154b1d79f",
71+
"integrity": "sha256-1a5a752048e0de0f754f1c3ca6b923503899bf080b3d08f81fca277de87b3794",
72+
"dependencies": []
73+
}
74+
]
75+
}
76+
}

.github/workflows/build_test_publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ jobs:
1818
- name: Checkout repository
1919
uses: actions/checkout@v6
2020

21+
- name: Verify actions lockfile
22+
uses: gjtorikian/[email protected]
23+
with:
24+
mode: verify
25+
2126
- name: Set up Node.js
2227
uses: actions/setup-node@v6
2328
with:

.github/workflows/codeberg_mirror.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ jobs:
1313
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
16-
- uses: yesolutions/mirror-action@662fce0eced8996f64d7fa264d76cddd84827f33
16+
17+
- name: Verify actions lockfile
18+
uses: gjtorikian/[email protected]
19+
with:
20+
mode: verify
21+
22+
- uses: yesolutions/[email protected]
1723
with:
1824
REMOTE: 'ssh://[email protected]/ffflorian/node-packages.git'
1925
GIT_SSH_PRIVATE_KEY: ${{ secrets.CODEBERG_SECRET }}

.github/workflows/codeql.yml

Lines changed: 50 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: "CodeQL Advanced"
12+
name: 'CodeQL Advanced'
1313

1414
on:
1515
push:
16-
branches: [ "main" ]
16+
branches: ['main']
1717
pull_request:
18-
branches: [ "main" ]
18+
branches: ['main']
1919
schedule:
2020
- cron: '17 16 * * 0'
2121

@@ -43,10 +43,10 @@ jobs:
4343
fail-fast: false
4444
matrix:
4545
include:
46-
- language: actions
47-
build-mode: none
48-
- language: javascript-typescript
49-
build-mode: none
46+
- language: actions
47+
build-mode: none
48+
- language: javascript-typescript
49+
build-mode: none
5050
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
5151
# Use `c-cpp` to analyze code written in C, C++ or both
5252
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
@@ -56,46 +56,51 @@ jobs:
5656
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
5757
# 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
5858
steps:
59-
- name: Checkout repository
60-
uses: actions/checkout@v6
59+
- name: Checkout repository
60+
uses: actions/checkout@v6
6161

62-
# Add any setup steps before running the `github/codeql-action/init` action.
63-
# This includes steps like installing compilers or runtimes (`actions/setup-node`
64-
# or others). This is typically only required for manual builds.
65-
# - name: Setup runtime (example)
66-
# uses: actions/setup-example@v1
62+
- name: Verify actions lockfile
63+
uses: gjtorikian/[email protected]
64+
with:
65+
mode: verify
6766

68-
# Initializes the CodeQL tools for scanning.
69-
- name: Initialize CodeQL
70-
uses: github/codeql-action/init@v4
71-
with:
72-
languages: ${{ matrix.language }}
73-
build-mode: ${{ matrix.build-mode }}
74-
# If you wish to specify custom queries, you can do so here or in a config file.
75-
# By default, queries listed here will override any specified in a config file.
76-
# Prefix the list here with "+" to use these queries and those in the config file.
67+
# Add any setup steps before running the `github/codeql-action/init` action.
68+
# This includes steps like installing compilers or runtimes (`actions/setup-node`
69+
# or others). This is typically only required for manual builds.
70+
# - name: Setup runtime (example)
71+
# uses: actions/setup-example@v1
7772

78-
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
79-
# queries: security-extended,security-and-quality
73+
# Initializes the CodeQL tools for scanning.
74+
- name: Initialize CodeQL
75+
uses: github/codeql-action/init@v4
76+
with:
77+
languages: ${{ matrix.language }}
78+
build-mode: ${{ matrix.build-mode }}
79+
# If you wish to specify custom queries, you can do so here or in a config file.
80+
# By default, queries listed here will override any specified in a config file.
81+
# Prefix the list here with "+" to use these queries and those in the config file.
8082

81-
# If the analyze step fails for one of the languages you are analyzing with
82-
# "We were unable to automatically build your code", modify the matrix above
83-
# to set the build mode to "manual" for that language. Then modify this step
84-
# to build your code.
85-
# ℹ️ Command-line programs to run using the OS shell.
86-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
87-
- name: Run manual build steps
88-
if: matrix.build-mode == 'manual'
89-
shell: bash
90-
run: |
91-
echo 'If you are using a "manual" build mode for one or more of the' \
92-
'languages you are analyzing, replace this with the commands to build' \
93-
'your code, for example:'
94-
echo ' make bootstrap'
95-
echo ' make release'
96-
exit 1
83+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
84+
# queries: security-extended,security-and-quality
9785

98-
- name: Perform CodeQL Analysis
99-
uses: github/codeql-action/analyze@v4
100-
with:
101-
category: "/language:${{matrix.language}}"
86+
# If the analyze step fails for one of the languages you are analyzing with
87+
# "We were unable to automatically build your code", modify the matrix above
88+
# to set the build mode to "manual" for that language. Then modify this step
89+
# to build your code.
90+
# ℹ️ Command-line programs to run using the OS shell.
91+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
92+
- name: Run manual build steps
93+
if: matrix.build-mode == 'manual'
94+
shell: bash
95+
run: |
96+
echo 'If you are using a "manual" build mode for one or more of the' \
97+
'languages you are analyzing, replace this with the commands to build' \
98+
'your code, for example:'
99+
echo ' make bootstrap'
100+
echo ' make release'
101+
exit 1
102+
103+
- name: Perform CodeQL Analysis
104+
uses: github/codeql-action/analyze@v4
105+
with:
106+
category: '/language:${{matrix.language}}'

.github/workflows/gitlab_mirror.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ jobs:
1313
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
16+
17+
- name: Verify actions lockfile
18+
uses: gjtorikian/[email protected]
19+
with:
20+
mode: verify
21+
1622
- name: Mirror + trigger CI
1723
uses: SvanBoxel/gitlab-mirror-and-ci-action@5c211f993d35256d96b772d995972f434b94e11a
1824
with:

0 commit comments

Comments
 (0)