Skip to content

Commit bac306c

Browse files
committed
Revert "update github action version"
This reverts commit 409afda.
1 parent 0e622ee commit bac306c

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

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

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

1212
jobs:
13+
1314
config:
1415
uses: ./.github/workflows/config.yaml
1516

1617
test:
1718
name: test plugin arcgis.service
18-
needs: [config]
19+
needs: [ config ]
1920
runs-on: ubuntu-latest
2021
strategy:
2122
matrix:
@@ -38,7 +39,7 @@ jobs:
3839
3940
package:
4041
name: package plugin arcgis.service
41-
needs: [config, test]
42+
needs: [ config, test ]
4243
runs-on: ubuntu-latest
4344
steps:
4445
- name: checkout
@@ -58,7 +59,7 @@ jobs:
5859
- name: pack
5960
run: npm pack ./plugins/arcgis/service
6061
- name: upload package
61-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v3
6263
with:
6364
name: arcgis.service-artifacts
6465
path: |

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

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

1212
jobs:
13+
1314
config:
1415
uses: ./.github/workflows/config.yaml
1516

@@ -41,8 +42,9 @@ jobs:
4142
run: |
4243
npm pack ./plugins/arcgis/web-app/dist/main
4344
- name: upload packages
44-
uses: actions/upload-artifact@v4
45+
uses: actions/upload-artifact@v3
4546
with:
4647
name: arcgis.web-app-artifacts
4748
path: |
4849
ngageoint-mage.arcgis.web-app-*.tgz
50+

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

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

1212
jobs:
13+
1314
config:
1415
uses: ./.github/workflows/config.yaml
1516

1617
test:
1718
name: test plugin image.service
18-
needs: [config]
19+
needs: [ config ]
1920
runs-on: ubuntu-latest
2021
strategy:
2122
matrix:
@@ -38,7 +39,7 @@ jobs:
3839
3940
package:
4041
name: package plugin image.service
41-
needs: [config, test]
42+
needs: [ config, test ]
4243
runs-on: ubuntu-latest
4344
steps:
4445
- name: checkout
@@ -58,7 +59,7 @@ jobs:
5859
- name: pack
5960
run: npm pack ./plugins/image/service
6061
- name: upload package
61-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v3
6263
with:
6364
name: image.service-artifacts
6465
path: |

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

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

1212
jobs:
13+
1314
config:
1415
uses: ./.github/workflows/config.yaml
1516

1617
test:
1718
name: test plugin nga-msi
18-
needs: [config]
19+
needs: [ config ]
1920
runs-on: ubuntu-latest
2021
strategy:
2122
matrix:
@@ -38,7 +39,7 @@ jobs:
3839
3940
package:
4041
name: package plugin nga-msi
41-
needs: [config, test]
42+
needs: [ config, test ]
4243
runs-on: ubuntu-latest
4344
steps:
4445
- name: checkout
@@ -58,8 +59,8 @@ jobs:
5859
- name: pack
5960
run: npm pack ./plugins/nga-msi
6061
- name: upload package
61-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v3
6263
with:
6364
name: nga-msi-artifacts
6465
path: |
65-
ngageoint-mage.*.tgz
66+
ngageoint-mage.*.tgz

.github/workflows/build_test.service.yaml

Lines changed: 3 additions & 3 deletions
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@v4
39+
uses: actions/upload-artifact@v3
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

Lines changed: 2 additions & 2 deletions
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@v4
44+
uses: actions/upload-artifact@v3
4545
with:
4646
name: mage.web-app-artifacts
4747
path: |
48-
ngageoint-mage.*.tgz
48+
ngageoint-mage.*.tgz

0 commit comments

Comments
 (0)