File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ jobs:
30
30
id : vars
31
31
run : |
32
32
sharp_version="${{ fromJSON(steps.package_lock_json.outputs.packageLockJson).dependencies.sharp.version }}"
33
- echo "::set-output name= sharp_version:: $sharp_version"
33
+ echo "sharp_version= $sharp_version" >> $GITHUB_OUTPUT
34
34
35
35
release_exists="true"
36
36
git show-ref --tags --quiet --verify -- "refs/tags/$sharp_version" || release_exists="false"
37
- echo "::set-output name= release_exists:: $release_exists"
37
+ echo "release_exists= $release_exists" >> $GITHUB_OUTPUT
38
38
- name : Build
39
39
id : docker_build
40
40
uses : docker/build-push-action@v4
Original file line number Diff line number Diff line change 1
- FROM lambci /lambda:build-nodejs12.x
1
+ FROM public.ecr.aws /lambda/nodejs:18
2
2
3
3
WORKDIR /build
4
4
You can’t perform that action at this time.
0 commit comments