Skip to content

Commit

Permalink
Remove all the useless formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
collijk committed Dec 27, 2023
1 parent a280cc4 commit cb313c2
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
python-version:
required: false
description: 'Python version'
default: '3.10'
default: '3.11'
outputs: {}
runs:
using: 'composite'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ jobs:
$body
EOF
)
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ jobs:
$body
EOF
)
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
poetry run kacl-cli release ${{ steps.updated_version.outputs.version }} --modify --auto-link
echo "" >> CHANGELOG.md
body=$(poetry run kacl-cli get ${{ steps.updated_version.outputs.version }})
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
{
Expand Down

0 comments on commit cb313c2

Please sign in to comment.