Skip to content

Commit f99a1d4

Browse files
committed
update
1 parent 9b7a589 commit f99a1d4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/detect-new-data.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
steps:
3232
# Step 1: Check out the repository code
3333
- name: Checkout Repo
34-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
uses: actions/checkout@v4
3535
with:
3636
fetch-depth: 0 # Fetch all history for git operations
3737

3838
# Step 2: Set up Node.js environment
3939
- name: Setup Node.js
40-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
40+
uses: actions/setup-node@v4
4141
with:
4242
node-version: ${{ env.NODE_VERSION }}
4343
cache: 'npm'
@@ -67,13 +67,13 @@ jobs:
6767
steps:
6868
# Step 1: Check out repository code
6969
- name: Checkout Repo
70-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
70+
uses: actions/checkout@v4
7171
with:
7272
fetch-depth: 0 # Fetch all history for git operations
7373

7474
# Step 2: Set up Node.js environment
7575
- name: Setup Node.js
76-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
76+
uses: actions/setup-node@v4
7777
with:
7878
node-version: ${{ env.NODE_VERSION }}
7979
cache: 'npm'
@@ -152,7 +152,7 @@ jobs:
152152
# Step 11: Upload artifacts for debugging and record-keeping
153153
- name: Capture output artifacts
154154
if: always()
155-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
155+
uses: actions/upload-artifact@v4
156156
with:
157157
name: data-detection-${{ github.run_id }}
158158
path: |

.github/workflows/detect-new-tokens.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout Repo
48-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48+
uses: actions/checkout@v4
4949
with:
5050
fetch-depth: 0 # Fetch all history for git operations
5151
- name: Setup Node.js
52-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
52+
uses: actions/setup-node@v4
5353
with:
5454
node-version: ${{ env.NODE_VERSION }}
5555
cache: 'npm'
@@ -76,11 +76,11 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- name: Checkout Repo
79-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
79+
uses: actions/checkout@v4
8080
with:
8181
fetch-depth: 0 # Fetch all history for git operations
8282
- name: Setup Node.js
83-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
83+
uses: actions/setup-node@v4
8484
with:
8585
node-version: ${{ env.NODE_VERSION }}
8686
cache: 'npm'
@@ -160,7 +160,7 @@ jobs:
160160
# Capture output artifacts (always runs, even if previous steps failed)
161161
- name: Capture output files
162162
if: always()
163-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
163+
uses: actions/upload-artifact@v4
164164
with:
165165
name: token-detection-artifacts-${{ github.run_id }}
166166
path: |

0 commit comments

Comments
 (0)