Skip to content

Commit c1f4622

Browse files
ZKRobikruplm
authored andcommitted
Remove variable usage
1 parent 68db3b9 commit c1f4622

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,12 @@ jobs:
2323
runs-on: windows-latest
2424
strategy:
2525
matrix:
26-
dotnet-version: [ '${{ vars.DOTNET_VERSION }}' ]
27-
node-version: [ '${{ vars.NODE_VERSION }}' ]
26+
dotnet-version: [ '6.0.x' ]
27+
node-version: [ '20.x' ]
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
3131

32-
- run: echo Calling setup-node with node-version ${{ vars.NODE_VERSION }}
33-
3432
- name: Setup Node.js ${{ matrix.node-version }}
3533
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
3634
with:
@@ -46,8 +44,6 @@ jobs:
4644
- name: Test JavaScript
4745
run: npx lerna run test
4846

49-
- run: echo Calling setup-dotnet with dotnet-version ${{ vars.DOTNET_VERSION }}
50-
5147
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
5248
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
5349
with:

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,10 @@ jobs:
5454
permissions:
5555
id-token: write
5656
steps:
57-
- run: echo Calling setup-node with node-version ${{ vars.NODE_VERSION }}
5857
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
5958
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
6059
with:
61-
node-version: ${{ vars.NODE_VERSION }}
60+
node-version: 20.x
6261
registry-url: https://registry.npmjs.org/
6362
- run: |
6463
lerna publish from-package --no-private --yes
@@ -77,10 +76,9 @@ jobs:
7776
with:
7877
name: packages
7978
path: ./packages
80-
- run: echo Calling setup-dotnet with dotnet-version ${{ vars.DOTNET_VERSION }}
8179
- uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
8280
with:
83-
dotnet-version: ${{ vars.DOTNET_VERSION }}
81+
dotnet-version: 6.0.x
8482
- name: Publish Messaging packages
8583
working-directory: ./packages
8684
run: |

0 commit comments

Comments
 (0)