Skip to content

Commit 409afda

Browse files
committed
update github action version
1 parent eb60b57 commit 409afda

6 files changed

+16
-21
lines changed

.github/workflows/build_test.arcgis.service.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ on:
1010
- plugins/arcgis/service/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

1716
test:
1817
name: test plugin arcgis.service
19-
needs: [ config ]
18+
needs: [config]
2019
runs-on: ubuntu-latest
2120
strategy:
2221
matrix:
@@ -39,7 +38,7 @@ jobs:
3938
4039
package:
4140
name: package plugin arcgis.service
42-
needs: [ config, test ]
41+
needs: [config, test]
4342
runs-on: ubuntu-latest
4443
steps:
4544
- name: checkout
@@ -59,7 +58,7 @@ jobs:
5958
- name: pack
6059
run: npm pack ./plugins/arcgis/service
6160
- name: upload package
62-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6362
with:
6463
name: arcgis.service-artifacts
6564
path: |

.github/workflows/build_test.arcgis.web-app.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
- plugins/arcgis/web-app/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

@@ -42,9 +41,8 @@ jobs:
4241
run: |
4342
npm pack ./plugins/arcgis/web-app/dist/main
4443
- name: upload packages
45-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4645
with:
4746
name: arcgis.web-app-artifacts
4847
path: |
4948
ngageoint-mage.arcgis.web-app-*.tgz
50-

.github/workflows/build_test.image.service.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ on:
1010
- plugins/image/service/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

1716
test:
1817
name: test plugin image.service
19-
needs: [ config ]
18+
needs: [config]
2019
runs-on: ubuntu-latest
2120
strategy:
2221
matrix:
@@ -39,7 +38,7 @@ jobs:
3938
4039
package:
4140
name: package plugin image.service
42-
needs: [ config, test ]
41+
needs: [config, test]
4342
runs-on: ubuntu-latest
4443
steps:
4544
- name: checkout
@@ -59,7 +58,7 @@ jobs:
5958
- name: pack
6059
run: npm pack ./plugins/image/service
6160
- name: upload package
62-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6362
with:
6463
name: image.service-artifacts
6564
path: |

.github/workflows/build_test.nga-msi.yaml

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ on:
1010
- plugins/nga-msi/**
1111

1212
jobs:
13-
1413
config:
1514
uses: ./.github/workflows/config.yaml
1615

1716
test:
1817
name: test plugin nga-msi
19-
needs: [ config ]
18+
needs: [config]
2019
runs-on: ubuntu-latest
2120
strategy:
2221
matrix:
@@ -39,7 +38,7 @@ jobs:
3938
4039
package:
4140
name: package plugin nga-msi
42-
needs: [ config, test ]
41+
needs: [config, test]
4342
runs-on: ubuntu-latest
4443
steps:
4544
- name: checkout
@@ -59,8 +58,8 @@ jobs:
5958
- name: pack
6059
run: npm pack ./plugins/nga-msi
6160
- name: upload package
62-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6362
with:
6463
name: nga-msi-artifacts
6564
path: |
66-
ngageoint-mage.*.tgz
65+
ngageoint-mage.*.tgz

.github/workflows/build_test.service.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636
- name: package
3737
run: npm pack ./service
3838
- name: upload package
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: mage.service-artifacts
4242
path: |
4343
ngageoint-mage.service-*.tgz
4444
4545
test:
4646
name: test mage service
47-
needs: [ config, build ]
47+
needs: [config, build]
4848
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
@@ -76,4 +76,4 @@ jobs:
7676
run: |
7777
cd service
7878
npm run ci:test
79-
# TODO: restore coveralls test coverage report - see buildAndTest.yml
79+
# TODO: restore coveralls test coverage report - see buildAndTest.yml

.github/workflows/build_test.web-app.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
npm pack ./web-app/dist/core-lib
4242
npm pack ./web-app/dist
4343
- name: upload packages
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: mage.web-app-artifacts
4747
path: |
48-
ngageoint-mage.*.tgz
48+
ngageoint-mage.*.tgz

0 commit comments

Comments
 (0)