Skip to content

Commit 224ac09

Browse files
chore(deps): pin dependencies (#303)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9c15c51 commit 224ac09

File tree

5 files changed

+68
-91
lines changed

5 files changed

+68
-91
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
id: checkout
24-
uses: actions/[email protected]
24+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2525

2626
- name: Setup Node.js
2727
id: setup-node
28-
uses: actions/[email protected]
28+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
2929
with:
3030
node-version-file: .node-version
3131
cache: npm
@@ -57,11 +57,11 @@ jobs:
5757
steps:
5858
- name: Checkout
5959
id: checkout
60-
uses: actions/[email protected]
60+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6161

6262
- name: Setup Node.js
6363
id: setup-node
64-
uses: actions/[email protected]
64+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
6565
with:
6666
node-version-file: .node-version
6767
cache: npm
@@ -89,7 +89,7 @@ jobs:
8989
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
9090
name: Upload Artifact
9191
id: upload
92-
uses: actions/[email protected]
92+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
9393
with:
9494
name: dist
9595
path: dist/
@@ -101,13 +101,13 @@ jobs:
101101
steps:
102102
- name: Checkout
103103
id: checkout
104-
uses: actions/[email protected]
104+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
105105
with:
106106
fetch-depth: 0
107107

108108
- name: Setup Node.js
109109
id: setup-node
110-
uses: actions/[email protected]
110+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
111111
with:
112112
node-version-file: .node-version
113113
cache: npm
@@ -118,7 +118,7 @@ jobs:
118118

119119
- name: Lint Codebase
120120
id: super-linter
121-
uses: super-linter/super-linter/[email protected]
121+
uses: super-linter/super-linter/slim@5119dcd8011e92182ce8219d9e9efc82f16fddb6 # v8.0.0
122122
env:
123123
DEFAULT_BRANCH: main
124124
FILTER_REGEX_EXCLUDE: dist/**/*
@@ -141,7 +141,7 @@ jobs:
141141
steps:
142142
- name: Checkout
143143
id: checkout
144-
uses: actions/[email protected]
144+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
145145

146146
- name: Run DependaMerge
147147
uses: ./
@@ -164,30 +164,30 @@ jobs:
164164

165165
steps:
166166
- name: Checkout repository
167-
uses: actions/[email protected]
167+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
168168
with:
169169
fetch-depth: 0
170170
submodules: recursive
171171

172172
- name: Setup .NET
173-
uses: actions/[email protected]
173+
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
174174
with:
175175
dotnet-version: 8.x
176176
dotnet-quality: ga
177177

178178
- name: Install GitVersion
179-
uses: gittools/actions/gitversion/[email protected]
179+
uses: gittools/actions/gitversion/setup@d0139503a9321f76b4a417dfdc8aebcec24decdd # v4.2.0
180180
with:
181181
versionSpec: '6.x'
182182

183183
- name: Determine Version
184184
id: gitversion
185-
uses: gittools/actions/gitversion/[email protected]
185+
uses: gittools/actions/gitversion/execute@d0139503a9321f76b4a417dfdc8aebcec24decdd # v4.2.0
186186
with:
187187
useConfigFile: true
188188

189189
- name: Create Release
190-
uses: release-drafter/[email protected]
190+
uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0
191191
with:
192192
version: ${{ steps.gitversion.outputs.fullSemVer }}
193193
publish: true

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/[email protected]
43+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/[email protected]
47+
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
4848
with:
4949
languages: ${{ matrix.language }}
5050
config-file: ./.github/codeql/codeql-config.yml
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/[email protected]
59+
uses: github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 https://git.io/JvXDl
@@ -70,4 +70,4 @@ jobs:
7070
# make release
7171

7272
- name: Perform CodeQL Analysis
73-
uses: github/codeql-action/[email protected]
73+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ runs:
7979
steps:
8080
- name: Fetch metadata
8181
id: metadata
82-
uses: dependabot/[email protected]
82+
uses: dependabot/fetch-metadata@08eff52bf64351f401fb50d4972fa95b9f2c2d1b # v2.4.0
8383
if: |
8484
github.event_name == 'pull_request' &&
8585
(github.actor == 'dependabot[bot]' || github.triggering_actor == 'dependabot[bot]' || inputs.skip-verification)
@@ -92,7 +92,7 @@ runs:
9292

9393
- name: DependaMerge
9494
id: dependamerge
95-
uses: actions/[email protected]
95+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
9696
if: |
9797
github.event_name == 'pull_request' &&
9898
(github.actor == 'dependabot[bot]' || github.triggering_actor == 'dependabot[bot]' || inputs.skip-verification)

0 commit comments

Comments
 (0)