From a9fca7c3d3b1c36e45ca4e687b5f522f2f25c323 Mon Sep 17 00:00:00 2001 From: Arun Date: Thu, 28 Dec 2023 13:19:41 -0800 Subject: [PATCH] Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated --- .github/workflows/apidoc.yml | 7 +++---- .github/workflows/main.yml | 10 +++++----- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/apidoc.yml b/.github/workflows/apidoc.yml index 5594b8b69..355815c7f 100644 --- a/.github/workflows/apidoc.yml +++ b/.github/workflows/apidoc.yml @@ -3,10 +3,10 @@ name: Update API docs on: # Trigger on push to branches `master` and `3.5`. push: - branches: [ master, 3.5 ] + branches: [master, 3.5] # Trigger on pull request events for PRs that have `master` as their target branch pull_request: - branches: [ master ] + branches: [master] # Allow running the workflow manually workflow_dispatch: @@ -33,7 +33,7 @@ jobs: # This way, packages will be checked for updates once every week. - name: Get Date id: get-date - run: echo "::set-output name=date::$(/bin/date -u "+%Y%W")" + run: echo "date=$(/bin/date -u "+%Y%W")" >> $GITHUB_OUTPUT - name: Cache apt packages id: cache-apt @@ -156,5 +156,4 @@ jobs: APIDOC_TOKEN: ${{ secrets.AWESOME_ROBOT_TOKEN || github.token }} GITHUB_COMPARE: ${{ github.event.compare }} run: .github/scripts/apidoc.sh - # vim: filetype=yaml:expandtab:shiftwidth=2:tabstop=2 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a012f927..3b46df872 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,10 +3,10 @@ name: Build & Test on: # Trigger on push to branches `master` and `3.5`. push: - branches: [ master, 3.5 ] + branches: [master, 3.5] # Trigger on pull request events for PRs that have `master` as their target branch pull_request: - branches: [ master ] + branches: [master] # Allow running the workflow manually workflow_dispatch: @@ -75,15 +75,15 @@ jobs: LUAINCLUDE: ${{ matrix.lua_include || format('/usr/include/lua{0}', matrix.lua_version) }} LUALIBRARY: ${{ matrix.lua_library || format('/usr/lib/x86_64-linux-gnu/liblua{0}.so', matrix.lua_version) }} TESTS_SCREEN_SIZE: ${{ matrix.tests_screen_size }} - TEST_TIMEOUT: '100' - CI: 'true' + TEST_TIMEOUT: "100" + CI: "true" steps: # Create a cache invalidation key based on the current year + week. # This way, packages will be checked for updates once every week. - name: Get Date id: get-date - run: echo "::set-output name=date::$(/bin/date -u "+%Y%W")" + run: echo "date=$(/bin/date -u "+%Y%W")" >> $GITHUB_OUTPUT - name: Cache apt packages id: cache-apt