Skip to content

Commit

Permalink
Merge pull request #3878 from arunsathiya/master
Browse files Browse the repository at this point in the history
Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated
  • Loading branch information
mergify[bot] authored Jan 8, 2024
2 parents 1f7ac8f + a9fca7c commit 75758b0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/apidoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 75758b0

Please sign in to comment.