Skip to content

Commit

Permalink
chore: update gh action versions (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelax authored Dec 20, 2024
1 parent 2dcf445 commit 6a9bbf2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
GH_SHAREDLIB_PAT: ${{secrets.GH_SHAREDLIB_PAT}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
name: tfenv-versions
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: list-tfenv-versions
uses: Trepp/actions-tfenv-versions@v1
with:
folder: './'
- name: Archive tfenv-versions results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tfenv-versions
path: reports/*.md
Expand Down
2 changes: 1 addition & 1 deletion src/index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fs from 'fs';
import fs from 'node:fs';
import core from '@actions/core';
import { generateMarkdownTable } from './utils.mjs';

Expand Down

0 comments on commit 6a9bbf2

Please sign in to comment.