We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1887667 commit 9092ab2Copy full SHA for 9092ab2
.github/workflows/docker-workflow.yml
@@ -30,11 +30,11 @@ jobs:
30
id: vars
31
run: |
32
sharp_version="${{ fromJSON(steps.package_lock_json.outputs.packageLockJson).dependencies.sharp.version }}"
33
- echo "::set-output name=sharp_version::$sharp_version"
+ echo "sharp_version=$sharp_version" >> $GITHUB_OUTPUT
34
35
release_exists="true"
36
git show-ref --tags --quiet --verify -- "refs/tags/$sharp_version" || release_exists="false"
37
- echo "::set-output name=release_exists::$release_exists"
+ echo "release_exists=$release_exists" >> $GITHUB_OUTPUT
38
- name: Build
39
id: docker_build
40
uses: docker/build-push-action@v4
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM lambci/lambda:build-nodejs12.x
+FROM public.ecr.aws/lambda/nodejs:18
2
3
WORKDIR /build
4
0 commit comments