Skip to content

Commit 67b0a55

Browse files
committed
Update deprecated actions in docs CI
1 parent 1cabb56 commit 67b0a55

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
docs:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Fetch Repository Reference Info
1414
id: repo-info
1515
run: |
@@ -21,8 +21,8 @@ jobs:
2121
COMMIT_MSG=$PROJECT_NUMBER
2222
if [ "$PROJECT_NUMBER" != "$GIT_SHA_SHORT" ]; then COMMIT_MSG+=" ($GITHUB_SHA)"; fi
2323
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"
24+
echo "project-number=$PROJECT_NUMBER" >> $GITHUB_OUTPUT
25+
echo "commit-message=$COMMIT_MSG" >> $GITHUB_OUTPUT
2626
2727
- name: Install Doxygen
2828
env:

0 commit comments

Comments
 (0)