Skip to content

Commit

Permalink
updated workflow plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Feb 27, 2024
1 parent 704be16 commit 31d4e94
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-webos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
run: sudo apt-get -y -qq install cmake

- name: Download webOS NDK
uses: robinraju/release-downloader@v1.8
uses: robinraju/release-downloader@v1.9
with:
repository: "openlgtv/buildroot-nc4"
latest: true
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/steamlink-sdk/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
steps:
- name: Cache Steam Link SDK
id: cache-sdk
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: ${{ runner.os }}-steamlink-sdk-${{ inputs.ref }}
path: |
Expand All @@ -25,7 +25,7 @@ runs:
- name: Get Steam Link SDK
if: ${{ steps.cache-sdk.outputs.cache-hit != 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ValveSoftware/steamlink-sdk
ref: ${{ inputs.ref }}
Expand Down
22 changes: 13 additions & 9 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
Expand Down Expand Up @@ -58,21 +58,21 @@ jobs:
run: echo SHORT_SHA="${GITHUB_SHA:0:8}" >> $GITHUB_ENV

- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Download ares-cli-rs
uses: robinraju/release-downloader@v1.8
uses: robinraju/release-downloader@v1.9
with:
repository: "webosbrew/ares-cli-rs"
latest: true
fileName: "ares-package_*.deb"
out-file-path: "temp"

- name: Download Homebrew Toolbox
uses: robinraju/release-downloader@v1.8
uses: robinraju/release-downloader@v1.9
with:
repository: "webosbrew/dev-toolbox-cli"
latest: true
Expand All @@ -95,7 +95,7 @@ jobs:
working-directory: dist
run: for file in *.ipk ; do mv $file ${file//_arm/-${SHORT_SHA}_arm} ; done

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: webos-snapshot-${{ env.SHORT_SHA }}
path: dist/*.ipk
Expand All @@ -113,7 +113,7 @@ jobs:
run: echo SHORT_SHA="${GITHUB_SHA:0:8}" >> $GITHUB_ENV

- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
cmake --build . --config $BUILD_TYPE
cpack
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: raspi-snapshot-${{ env.SHORT_SHA }}
path: build/*.deb
Expand All @@ -165,11 +165,15 @@ jobs:
run: echo SHORT_SHA="${GITHUB_SHA:0:8}" >> $GITHUB_ENV

- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Update Packages
shell: bash
run: sudo apt-get -yq update

- name: Install Steam Link SDK
uses: ./.github/actions/steamlink-sdk
with:
Expand Down Expand Up @@ -207,7 +211,7 @@ jobs:
- name: Copy Install Manual
run: cp docs/INSTALL.steamlink.md dist/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: steamlink-snapshot-${{ env.SHORT_SHA }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/community-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Manipulate Event
uses: actions/github-script@v6
uses: actions/github-script@v7
id: set-result
with:
script: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ jobs:

steps:
- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Download ares-cli-rs
uses: robinraju/release-downloader@v1.8
uses: robinraju/release-downloader@v1.9
with:
repository: "webosbrew/ares-cli-rs"
latest: true
fileName: "ares-package_*.deb"
out-file-path: "temp"

- name: Download Manifest Generator
uses: robinraju/release-downloader@v1.8
uses: robinraju/release-downloader@v1.9
with:
repository: "webosbrew/dev-toolbox-cli"
latest: true
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

steps:
- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:

steps:
- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down

0 comments on commit 31d4e94

Please sign in to comment.