Skip to content

Commit

Permalink
Only track major version of GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Oct 20, 2023
1 parent f5d1f81 commit ed8105f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
steps:
# Makes the current repository available to the workflow.
- name: Checkout repo
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
# Initializes Node.js for the runner.
- name: Node setup
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
steps:
# Setup
- name: Checkout repo
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.8.1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down

0 comments on commit ed8105f

Please sign in to comment.