Skip to content

Commit ba119d3

Browse files
Merge pull request #923 from Availity/refactor/native-deploy-actions
Refactor/native deploy actions
2 parents b8f39a8 + aad9d2b commit ba119d3

File tree

10 files changed

+8285
-8657
lines changed

10 files changed

+8285
-8657
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ jobs:
7171
permissions:
7272
contents: write # Required for git push and creating tags
7373
pull-requests: write # Required for creating pull requests
74+
id-token: write
7475
steps:
7576
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
7677
with:
@@ -90,6 +91,9 @@ jobs:
9091
cache: 'yarn'
9192
cache-dependency-path: 'yarn.lock'
9293

94+
- name: Install latest npm
95+
run: npm install -g npm@latest
96+
9397
- name: Install Dependencies
9498
run: yarn install --immutable
9599

@@ -98,7 +102,6 @@ jobs:
98102

99103
- name: Setup Publish Config
100104
run: |
101-
yarn config set npmAuthToken "${{ secrets.NPM_TOKEN }}"
102105
git config user.email ${{ secrets.GH_EMAIL }}
103106
git config user.name ${{ secrets.GH_USER }}
104107

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 0 additions & 546 deletions
This file was deleted.

.yarn/releases/yarn-3.2.0.cjs

Lines changed: 0 additions & 785 deletions
This file was deleted.

.yarn/releases/yarn-4.12.0.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
nodeLinker: node-modules
1+
compressionLevel: mixed
22

3-
npmPublishRegistry: 'https://registry.npmjs.org/'
3+
enableGlobalCache: false
44

5-
npmRegistryServer: 'https://registry.npmjs.org/'
5+
nodeLinker: node-modules
66

7-
plugins:
8-
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
9-
spec: '@yarnpkg/plugin-interactive-tools'
7+
npmPublishRegistry: "https://registry.npmjs.org/"
108

11-
yarnPath: .yarn/releases/yarn-3.2.0.cjs
9+
npmRegistryServer: "https://registry.npmjs.org/"
1210

1311
supportedArchitectures:
1412
cpu:
@@ -24,3 +22,5 @@ supportedArchitectures:
2422
- linux
2523
- darwin
2624
- win32
25+
26+
yarnPath: .yarn/releases/yarn-4.12.0.cjs

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@types/jest": "30.0.0",
5858
"@types/node": "^22.15.17",
5959
"dependency-check": "^4.1.0",
60-
"eslint-config-availity": "^10.0.7",
60+
"eslint-config-availity": "^10.0.9",
6161
"gh-pages": "^6.3.0",
6262
"husky": "^9.1.7",
6363
"is-ci": "^4.1.0",
@@ -76,5 +76,5 @@
7676
"resolutions": {
7777
"socks": "2.7.3"
7878
},
79-
"packageManager": "yarn@3.2.0"
79+
"packageManager": "yarn@4.12.0"
8080
}

packages/api-axios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
},
4949
"devDependencies": {
5050
"@availity/upload-core": "workspace:*",
51-
"axios": "^1.12.2",
51+
"axios": "^1.13.2",
5252
"msw": "2.3.5",
5353
"tsup": "^8.4.0",
5454
"typescript": "^5.5.4"

packages/authorizations-axios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"@availity/authorizations-core": "workspace:*"
4242
},
4343
"devDependencies": {
44-
"axios": "^1.12.2",
44+
"axios": "^1.13.2",
4545
"tsup": "^8.4.0",
4646
"typescript": "^5.5.4"
4747
},

packages/dl-axios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"lodash": "^4.17.21"
4747
},
4848
"devDependencies": {
49-
"axios": "^1.12.2",
49+
"axios": "^1.13.2",
5050
"tsup": "^8.4.0",
5151
"typescript": "^5.5.4"
5252
},

0 commit comments

Comments
 (0)