Browse Source

Update github actions to address warnings

- Update github actions version for node.js 16
- Update github ::set-output usage
pull/87/head
matt335672 1 year ago
parent
commit
8421b30054
1 changed files with 6 additions and 7 deletions
  1. +6
    -7
      .github/workflows/build.yml

+ 6
- 7
.github/workflows/build.yml View File

@ -9,14 +9,13 @@ jobs:
runs-on: ubuntu-latest
steps:
# Set steps.os.outputs.image to the specific OS (e.g. 'ubuntu20')
# see https://github.com/actions/cache/issues/543
- name: Get operating system name and version.
id: os
run: echo "::set-output name=image::$ImageOS"
run: echo "image=$ImageOS" >>$GITHUB_OUTPUT
shell: bash
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Cache pulseaudio source
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-pulseaudio-src
with:
@ -44,16 +43,16 @@ jobs:
steps:
- name: Get operating system name and version.
id: os
run: echo "::set-output name=image::$ImageOS"
run: echo "image=$ImageOS" >>$GITHUB_OUTPUT
shell: bash
- name: Fetch pulseaudio sources
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-pulseaudio-src
with:
path: ~/pulseaudio.src
key: ${{ steps.os.outputs.image }}-build-${{ env.cache-name }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: sudo apt-get update
- run: sudo apt-get -yq install build-essential libpulse-dev
- run: ./bootstrap


Loading…
Cancel
Save