Skip to content

Commit

Permalink
BREAKING CHANGE: drop support for node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
stuft2 committed Apr 5, 2023
1 parent d3f4b40 commit 3f1b5f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
interval: "monthly"
target-branch: "main"
# Requesting reviews from yourself makes Dependabot PRs easy to find (https://github.com/pulls/review-requested)
reviewers:
- "yoshutch"
- "@byu-oit/specops-developer-fte"

# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/" # For GitHub Actions, set the directory to / to check for workflow files in .github/workflows. (GitHub Docs)
schedule:
interval: "daily"
interval: "monthly"
target-branch: "main"
# Requesting reviews from yourself makes Dependabot PRs easy to find (https://github.com/pulls/review-requested)
reviewers:
- "yoshutch"
- "@byu-oit/specops-developer-fte"
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ on:
- .github/workflows/bump.yml

env:
node_version: "16.x"
node_version: "18.x"

jobs:
test:
name: Test Module
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- .github/workflows/bump.yml

env:
node_version: "16.x"
node_version: "18.x"

jobs:
env:
Expand Down

0 comments on commit 3f1b5f1

Please sign in to comment.