Skip to content

Commit 67f8a7c

Browse files
authored
Only track major version of GH actions (#915)
1 parent f0fcff9 commit 67f8a7c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
steps:
99
# Makes the current repository available to the workflow.
1010
- name: Checkout repo
11-
uses: actions/checkout@v4.1.0
11+
uses: actions/checkout@v4
1212
# Initializes Node.js for the runner.
1313
- name: Node setup
14-
uses: actions/setup-node@v3.8.1
14+
uses: actions/setup-node@v3
1515
with:
1616
node-version: "18.x"
1717
registry-url: "https://registry.npmjs.org"

.github/workflows/status-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
steps:
2020
# Setup
2121
- name: Checkout repo
22-
uses: actions/checkout@v4.1.0
22+
uses: actions/checkout@v4
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v3.8.1
24+
uses: actions/setup-node@v3
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
cache: "npm"

0 commit comments

Comments
 (0)