We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cabb56 commit 67b0a55Copy full SHA for 67b0a55
1 file changed
.github/workflows/docs.yml
@@ -9,7 +9,7 @@ jobs:
9
docs:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
13
- name: Fetch Repository Reference Info
14
id: repo-info
15
run: |
@@ -21,8 +21,8 @@ jobs:
21
COMMIT_MSG=$PROJECT_NUMBER
22
if [ "$PROJECT_NUMBER" != "$GIT_SHA_SHORT" ]; then COMMIT_MSG+=" ($GITHUB_SHA)"; fi
23
echo "The project number is \"$PROJECT_NUMBER\" and the commit message is \"$COMMIT_MSG\""
24
- echo "::set-output name=project-number::$PROJECT_NUMBER"
25
- echo "::set-output name=commit-message::$COMMIT_MSG"
+ echo "project-number=$PROJECT_NUMBER" >> $GITHUB_OUTPUT
+ echo "commit-message=$COMMIT_MSG" >> $GITHUB_OUTPUT
26
27
- name: Install Doxygen
28
env:
0 commit comments