Skip to content

Commit 4cbdfef

Browse files
authored
nobug update github actions ubuntu version (#751)
* nobug update github actions ubuntu version * update node version to 16 * update sharp version
1 parent 95292b3 commit 4cbdfef

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/Lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [10.x]
12+
node-version: [16.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1

.github/workflows/UnitTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [10.x]
12+
node-version: [16.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1

.github/workflows/build_and_promote.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
jobs:
1818
build:
1919
name: Build
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-24.04
2121
outputs:
2222
SHORT_SHA: ${{ steps.short-sha.outputs.SHA }}
2323
steps:
@@ -45,7 +45,7 @@ jobs:
4545
promotion:
4646
name: Create Promotion Pull Request
4747
needs: build
48-
runs-on: ubuntu-20.04
48+
runs-on: ubuntu-24.04
4949
steps:
5050
# Update promotion/test-pr with new commit hash
5151
- name: Checkout promotion/test

.github/workflows/deploy-to-prod.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
deploy:
1414
name: Deploy to Prod
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
outputs:
1717
COMMIT_SHA: ${{ steps.read-hash.outputs.SHA }}
1818
steps:
@@ -41,7 +41,7 @@ jobs:
4141
sync-main-branch:
4242
name: Rebase Prod
4343
needs: deploy
44-
runs-on: ubuntu-20.04
44+
runs-on: ubuntu-24.04
4545
steps:
4646
- name: Checkout repository
4747
uses: actions/checkout@v2

.github/workflows/deploy-to-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
deploy:
1616
name: Deploy to Test
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818
outputs:
1919
COMMIT_SHA: ${{ steps.read-hash.outputs.SHA }}
2020
steps:
@@ -43,7 +43,7 @@ jobs:
4343
sync-test-branch:
4444
name: Rebase test branch from develop
4545
needs: deploy
46-
runs-on: ubuntu-20.04
46+
runs-on: ubuntu-24.04
4747
steps:
4848
- name: Checkout repository
4949
uses: actions/checkout@v2
@@ -56,7 +56,7 @@ jobs:
5656
promotion:
5757
name: Create Promotion Pull Request
5858
needs: [deploy, sync-test-branch]
59-
runs-on: ubuntu-20.04
59+
runs-on: ubuntu-24.04
6060
steps:
6161
# Update promotion/prod-pr with new commit hash
6262
- name: Checkout promotion/prod

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"reproject": "~1.2.2",
5757
"request": "~2.88.0",
5858
"request-promise-native": "~1.0.7",
59-
"sharp": "~0.23.0",
59+
"sharp": "~0.32.5",
6060
"stream": "~0.0.2",
6161
"stream-transform": "~2.0.1",
6262
"swagger-tools": "~0.10.4",

0 commit comments

Comments
 (0)