Skip to content

Commit 7d9c126

Browse files
committed
update actions verions
1 parent 4b58602 commit 7d9c126

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Setup Check
1010
runs-on: windows-2022
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: yarn install
1515
run: yarn install
@@ -86,4 +86,4 @@ jobs:
8686
runs-on: ubuntu-latest
8787
needs: [setupcheck, call-runcodegen, call-testcli, call-buildnpmpackage, call-buildrnx]
8888
steps:
89-
- uses: actions/checkout@v3
89+
- uses: actions/checkout@v4

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
needs: call-runcodegen
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Use Node.js
23-
uses: actions/setup-node@v1
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: 18
2626
registry-url: https://registry.npmjs.org/
@@ -38,7 +38,7 @@ jobs:
3838
working-directory: package
3939

4040
- name: upload npm logs
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: npm-logs
4444
path: /home/runner/.npm/_logs

.github/workflows/template-buildexample.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Build ${{ inputs.exampleName }}
2222
runs-on: ${{ inputs.vmImage }}
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: yarn install
2727
run: yarn install
@@ -55,7 +55,7 @@ jobs:
5555
working-directory: ${{ inputs.exampleName }}
5656

5757
- name: Upload appx
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: ${{ inputs.exampleName }} appx
6161
path: ${{ inputs.exampleName }}\windows\AppPackages\${{ inputs.exampleName }}\${{ inputs.exampleName }}_1.0.0.0_x64_Debug_Test

.github/workflows/template-buildnpmpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Build NPM Package
1414
runs-on: ${{ inputs.vmImage }}
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: yarn install
1919
run: yarn install
@@ -26,7 +26,7 @@ jobs:
2626
working-directory: package
2727

2828
- name: Upload npm package
29-
uses: actions/upload-artifact@v3
29+
uses: actions/upload-artifact@v4
3030
with:
3131
name: RNX npm package
3232
path: package\*.tgz

.github/workflows/template-buildrnx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
name: Build RNX ${{ inputs.configuration }} ${{ inputs.platform }}
2222
runs-on: ${{ inputs.vmImage }}
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: setup-msbuild
27-
uses: microsoft/setup-msbuild@v1
27+
uses: microsoft/setup-msbuild@v2
2828

2929
- name: yarn install
3030
run: yarn install
@@ -36,7 +36,7 @@ jobs:
3636
run: msbuild /restore /p:RestorePackagesConfig=true package\windows\ReactNativeXaml.sln /p:configuration=${{ inputs.configuration }} /p:platform=${{ inputs.platform }}
3737

3838
- name: Upload build output
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: RNX ${{ inputs.configuration }} ${{ inputs.platform }} Build Output
4242
path: package\windows\${{ inputs.platform }}\${{ inputs.configuration }}\ReactNativeXaml\*.*

.github/workflows/template-runcodegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
git config --global core.autocrlf false
1919
git config --global core.filemode false
2020
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- name: yarn install
2424
run: yarn install

.github/workflows/template-testcli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: New RNW@${{ inputs.rnwVersion }} App from ${{ inputs.useRnwNuGet && 'NuGet' || 'Source' }}
2626
runs-on: ${{ inputs.vmImage }}
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929

3030
- name: yarn install
3131
run: yarn install

0 commit comments

Comments
 (0)