Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set-output deprecation changed how multilines are handled #166

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/create-additional-action-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:
TAG=${GITHUB_REF/refs\/tags\//}
MAJOR="v$(echo ${TAG} | cut -d. -f1)"
MINOR="${MAJOR}.$(echo ${GITHUB_REF} | cut -d. -f2)"
echo "tags=${MAJOR}%0A${MINOR}" >> $GITHUB_OUTPUT
EOF="$(uuid)"
echo "tags<<${EOF}" >> $GITHUB_OUTPUT
echo "${MAJOR}" >> $GITHUB_OUTPUT
echo "${MINOR}" >> $GITHUB_OUTPUT
echo "${EOF}" >> $GITHUB_OUTPUT

update-tags:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:19-alpine as compiler
FROM node:19.3.0-alpine as compiler

RUN mkdir -p /usr/local/source
WORKDIR /usr/local/source
Expand All @@ -10,7 +10,7 @@ COPY ./src ./src
RUN npm run build


FROM node:19-alpine
FROM node:19.3.0-alpine
LABEL "repository"="http://github.com/laminas/laminas-ci-matrix-action"
LABEL "homepage"="http://github.com/laminas/laminas-ci-matrix-action"
LABEL "maintainer"="https://github.com/laminas/technical-steering-committee/"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"test": "jest --logHeapUsage"
},
"engines": {
"npm": "^8",
"node": "^19"
"npm": "^9.2.0",
"node": "^19.3.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
Expand Down