Skip to content

Commit

Permalink
updated everything to work with node 18.19, updated github action ver…
Browse files Browse the repository at this point in the history
…sions, prep for release 1.4.0

Signed-off-by: Amndeep Singh Mann <[email protected]>
  • Loading branch information
Amndeep7 committed Feb 28, 2024
1 parent b97e1a5 commit d200bd1
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-approve-and-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.event.pull_request.user.login == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'dependencies')
runs-on: ubuntu-22.04
steps:
- uses: hmarr/auto-approve-action@v3
- uses: hmarr/auto-approve-action@v4
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 18.18
node-version: "18"
check-latest: true
cache: 'npm'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 18.18
node-version: "18"
check-latest: true
cache: 'npm'
cache-dependency-path: ./saf/package-lock.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
runs-on: ubuntu-22.04
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/e2e-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.18
node-version: "18"
check-latest: true
cache: 'npm'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.18
node-version: "18"
check-latest: true
cache: 'npm'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-to-npm-gpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 18.18
node-version: "18"
check-latest: true
registry-url: "https://registry.npmjs.org"
cache: 'npm'
Expand All @@ -34,7 +34,7 @@ jobs:
# Setup .npmrc file to publish to GitHub Package Registry
- uses: actions/setup-node@v4
with:
node-version: 18.18
node-version: "18"
registry-url: 'https://npm.pkg.github.com'
cache: 'npm'

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_CONTAINER=node:18.18-alpine
ARG BASE_CONTAINER=node:18-alpine

FROM $BASE_CONTAINER AS builder

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.3
1.4.0
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@mitre/saf",
"description": "The MITRE Security Automation Framework (SAF) Command Line Interface (CLI) brings together applications, techniques, libraries, and tools developed by MITRE and the security community to streamline security automation for systems and DevOps pipelines.",
"version": "1.3.3",
"version": "1.4.0",
"author": "The MITRE Security Automation Framework",
"bin": "./bin/run",
"bugs": "https://github.com/mitre/saf/issues",
"dependencies": {
"@aws-sdk/client-config-service": "^3.398.0",
"@aws-sdk/client-securityhub": "^3.287.0",
"@mitre/emass_client": "3.10.0",
"@mitre/hdf-converters": "^2.9.4",
"@mitre/heimdall-lite": "^2.9.5",
"@mitre/hdf-converters": "^2.10.1",
"@mitre/heimdall-lite": "^2.10.1",
"@mitre/inspec-objects": "^1.0.1",
"@oclif/core": "^3.16.0",
"@oclif/plugin-help": "^6.0.9",
Expand Down Expand Up @@ -95,7 +95,7 @@
"ts-mocha": "^10.0.0"
},
"engines": {
"node": "^18.18.0"
"node": "^18.19.0"
},
"files": [
"/bin",
Expand Down

0 comments on commit d200bd1

Please sign in to comment.