Skip to content

Commit

Permalink
Merge pull request #2383 from matter-labs/os-zkd-1080-move-zksync-dev…
Browse files Browse the repository at this point in the history
…-repo

[skip ci]: Remove deprecated set-output command
  • Loading branch information
alexandrst88 authored Aug 15, 2023
2 parents 395a729 + b4cf6b1 commit d5d485f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-data-restore-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Set outputs
id: vars
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: setup-env
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
id: validation
run: |
if [ ${{ needs.setup.outputs.config-tag }} = "" ]; then
echo "::set-output name=skip::true"
echo "skip=true" >> $GITHUB_OUTPUT
else
echo "::set-output name=skip::false"
echo "skip=false" >> $GITHUB_OUTPUT
fi
update:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/setup.runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
"^goerli$": { "cluster": "testnet" },
"^mainnet$": { "cluster": "mainnet", "hfEnv": "prod", "namespace": "zksync" }
}
- run: echo "::set-output name=short::$(git rev-parse --short HEAD)"
- run: echo "short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
id: sha
- name: Create GitHub Deployment
uses: chrnorm/deployment-action@releases/v1
Expand All @@ -94,7 +94,7 @@ jobs:
id: get_partsed_git_tag
run: |
git_tag="${GITHUB_REF#refs/*/}"
echo "::set-output name=id::${git_tag}"
echo "id=${git_tag}" >> $GITHUB_OUTPUT
- name: Match the tag vX.Y.Z-rN pattern
uses: actions-ecosystem/action-regex-match@9e6c4fb3d5e898f505be7a1fb6e7b0a278f6665b # v2
id: regex
Expand Down

0 comments on commit d5d485f

Please sign in to comment.