mirror of
https://github.com/opentofu/setup-opentofu.git
synced 2025-12-31 15:02:19 +00:00
Pinning into specific node version
Signed-off-by: Diogenes Fernandes <diofeher@gmail.com>
This commit is contained in:
parent
ed333c64d9
commit
13d2b2c29f
2 changed files with 6 additions and 6 deletions
8
.github/workflows/continuous-integration.yml
vendored
8
.github/workflows/continuous-integration.yml
vendored
|
|
@ -1,9 +1,9 @@
|
|||
name: 'Continuous Integration'
|
||||
name: "Continuous Integration"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- main
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
|
|
@ -11,9 +11,9 @@ jobs:
|
|||
name: Check dist/ directory
|
||||
uses: actions/reusable-workflows/.github/workflows/check-dist.yml@2826fb8353263a138210fc017301ce5767a9c0d4
|
||||
with:
|
||||
node-version: "20.x"
|
||||
node-version: "20.19.1"
|
||||
test:
|
||||
name: Test
|
||||
uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@2826fb8353263a138210fc017301ce5767a9c0d4
|
||||
with:
|
||||
node-version: "20.x"
|
||||
node-version: "20.19.1"
|
||||
|
|
|
|||
|
|
@ -44,8 +44,8 @@ async function fetchReleases (githubToken) {
|
|||
if (resp.message.statusCode !== hc.HttpCodes.OK) {
|
||||
throw new Error('failed fetching releases (' + resp.message.statusCode + ')');
|
||||
}
|
||||
|
||||
let body = await resp.readBody();
|
||||
|
||||
const body = await resp.readBody();
|
||||
const releasesMeta = JSON.parse(body);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue