Skip to content

Commit 9bac60b

Browse files
authored
Replace deprecated command with environment file (#440)
1 parent 5c28f8d commit 9bac60b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
name: Extract current version
6666
run: |
6767
version=$(cat gradle.properties | grep "version=" | awk -F'=' '{print $2}')
68-
echo "::set-output name=project_version::$version"
68+
echo "project_version=$version" >> $GITHUB_OUTPUT
6969
7070
perform_release:
7171
name: Perform Release

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
name: Check for open issues
3737
run: |
3838
echo "TODO actually check for open issues"
39-
echo "::set-output name=is_open_issues::false"
39+
echo "is_open_issues=false" >> $GITHUB_OUTPUT
4040
4141
- id: validate-release-state
4242
name: Validate release state

0 commit comments

Comments
 (0)