Skip to content

Commit

Permalink
feat!: Update action runtime to nodejs20, update default ArgoCD ver…
Browse files Browse the repository at this point in the history
…sion to `2.8.4` (#24)
  • Loading branch information
bryantbiggs committed Sep 24, 2023
1 parent f3ecac7 commit bb0214a
Show file tree
Hide file tree
Showing 7 changed files with 1,724 additions and 1,672 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {
sourceType: 'module',
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'prettier/prettier': [
'error',
{
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Show version
uses: ./
Expand All @@ -48,7 +48,7 @@ jobs:
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Show version
uses: ./
Expand All @@ -74,7 +74,7 @@ jobs:
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Show version
uses: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- name: Release
env:
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ inputs:
description: >
Version of Argo CD to install - https://github.com/argoproj/argo-cd/releases
required: false
default: 2.6.7
default: 2.8.4

runs:
using: node16
using: node20
main: dist/index.js
4 changes: 2 additions & 2 deletions dist/index.js

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,30 +72,30 @@
]
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@octokit/auth-action": "^2.0.3",
"@octokit/rest": "^19.0.7",
"string-argv": "^0.3.1"
"@octokit/auth-action": "^4.0.1",
"@octokit/rest": "^20.0.1",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vercel/ncc": "^0.36.1",
"@types/node": "^20.6.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vercel/ncc": "^0.38.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.3",
"prettier-plugin-package": "^1.3.0",
"semantic-release": "^21.0.1",
"typescript": "^5.0.4"
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-package": "^1.3.1",
"semantic-release": "^22.0.4",
"typescript": "^5.2.2"
}
}

0 comments on commit bb0214a

Please sign in to comment.