Skip to content

Commit

Permalink
update github action version
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanslatten committed Feb 25, 2025
1 parent eb60b57 commit 409afda
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 21 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build_test.arcgis.service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ on:
- plugins/arcgis/service/**

jobs:

config:
uses: ./.github/workflows/config.yaml

test:
name: test plugin arcgis.service
needs: [ config ]
needs: [config]
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -39,7 +38,7 @@ jobs:
package:
name: package plugin arcgis.service
needs: [ config, test ]
needs: [config, test]
runs-on: ubuntu-latest
steps:
- name: checkout
Expand All @@ -59,7 +58,7 @@ jobs:
- name: pack
run: npm pack ./plugins/arcgis/service
- name: upload package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: arcgis.service-artifacts
path: |
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/build_test.arcgis.web-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:
- plugins/arcgis/web-app/**

jobs:

config:
uses: ./.github/workflows/config.yaml

Expand Down Expand Up @@ -42,9 +41,8 @@ jobs:
run: |
npm pack ./plugins/arcgis/web-app/dist/main
- name: upload packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: arcgis.web-app-artifacts
path: |
ngageoint-mage.arcgis.web-app-*.tgz
7 changes: 3 additions & 4 deletions .github/workflows/build_test.image.service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ on:
- plugins/image/service/**

jobs:

config:
uses: ./.github/workflows/config.yaml

test:
name: test plugin image.service
needs: [ config ]
needs: [config]
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -39,7 +38,7 @@ jobs:
package:
name: package plugin image.service
needs: [ config, test ]
needs: [config, test]
runs-on: ubuntu-latest
steps:
- name: checkout
Expand All @@ -59,7 +58,7 @@ jobs:
- name: pack
run: npm pack ./plugins/image/service
- name: upload package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: image.service-artifacts
path: |
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/build_test.nga-msi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ on:
- plugins/nga-msi/**

jobs:

config:
uses: ./.github/workflows/config.yaml

test:
name: test plugin nga-msi
needs: [ config ]
needs: [config]
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -39,7 +38,7 @@ jobs:
package:
name: package plugin nga-msi
needs: [ config, test ]
needs: [config, test]
runs-on: ubuntu-latest
steps:
- name: checkout
Expand All @@ -59,8 +58,8 @@ jobs:
- name: pack
run: npm pack ./plugins/nga-msi
- name: upload package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nga-msi-artifacts
path: |
ngageoint-mage.*.tgz
ngageoint-mage.*.tgz
6 changes: 3 additions & 3 deletions .github/workflows/build_test.service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
- name: package
run: npm pack ./service
- name: upload package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mage.service-artifacts
path: |
ngageoint-mage.service-*.tgz
test:
name: test mage service
needs: [ config, build ]
needs: [config, build]
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -76,4 +76,4 @@ jobs:
run: |
cd service
npm run ci:test
# TODO: restore coveralls test coverage report - see buildAndTest.yml
# TODO: restore coveralls test coverage report - see buildAndTest.yml
4 changes: 2 additions & 2 deletions .github/workflows/build_test.web-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
npm pack ./web-app/dist/core-lib
npm pack ./web-app/dist
- name: upload packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mage.web-app-artifacts
path: |
ngageoint-mage.*.tgz
ngageoint-mage.*.tgz

0 comments on commit 409afda

Please sign in to comment.