Skip to content

Commit

Permalink
Merge pull request #25 from wanisfahmyDE/master
Browse files Browse the repository at this point in the history
Fixes node js, removes set-output in actions, updates all dependencies
  • Loading branch information
autero1 authored Oct 23, 2022
2 parents f287d02 + 4a5561d commit 91cbe88
Show file tree
Hide file tree
Showing 9 changed files with 2,354 additions and 880 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 20
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-18.04
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Dump GitHub context
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
stale:
runs-on: ubuntu-18.04
steps:
- uses: actions/stale@v1
- uses: actions/stale@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
- 'macos-latest'
- 'windows-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Read .nvmrc
run: echo "::set-output name=NVMRC::$(cat .nvmrc)"
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
- 'windows-latest'
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Read .nvmrc
run: echo "::set-output name=NVMRC::$(cat .nvmrc)"
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'

Expand All @@ -64,7 +64,7 @@ jobs:

- name: Upload test coverage as artifact
if: github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: coverage
path: coverage
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.15.0
16.18.0
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ branding:
icon: cloud
color: 'orange'
runs:
using: 'node12'
using: 'node16'
main: 'lib/index.js'
Loading

0 comments on commit 91cbe88

Please sign in to comment.