Skip to content

Commit 9092ab2

Browse files
committed
Using proper docker image, updated GH workflow
1 parent 1887667 commit 9092ab2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docker-workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
id: vars
3131
run: |
3232
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
3434
3535
release_exists="true"
3636
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
3838
- name: Build
3939
id: docker_build
4040
uses: docker/build-push-action@v4

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM lambci/lambda:build-nodejs12.x
1+
FROM public.ecr.aws/lambda/nodejs:18
22

33
WORKDIR /build
44

0 commit comments

Comments
 (0)