Skip to content

Commit

Permalink
Update app.yml
Browse files Browse the repository at this point in the history
Workflow dependency update
  • Loading branch information
8BallBomBom authored Sep 6, 2023
1 parent 0d961d4 commit 48303ca
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true
default: 'false'
push:
branches:
branches: main
pull_request:
defaults:
run:
Expand All @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node_version: [14.x]
node_version: [16.x]
app_type:
- WebRtcDemo
include:
Expand All @@ -30,19 +30,20 @@ jobs:
SCRIPT_DIR: ./test/scripts
steps:
- name: 'SETUP: Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: 'SETUP: History'
run: git --no-pager log -n 10 --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue) <%an>%Creset' --abbrev-commit
- name: 'SETUP: Node'
uses: actions/setup-node@v2.1.4
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: 'SETUP: Java'
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: '8.x'
distribution: 'temurin'
- name: 'SETUP: Cache Maven archetypes'
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -82,7 +83,7 @@ jobs:
KITE_HOME: ${{ runner.workspace }}/KITE
KITE_SCRIPT_DIR: ${{ runner.workspace }}/KITE/scripts/mac
- name: 'POST-TEST: Upload Artifacts'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: kite-artifacts-${{ matrix.app_type }}
Expand All @@ -95,7 +96,7 @@ jobs:
!${{ runner.workspace }}/KITE/KITE-Example-Test/js/node_modules
- name: 'POST-TEST: Update Github Pages with Kite Report'
if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@3.7.1
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.RUDDELL_GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
Expand Down

0 comments on commit 48303ca

Please sign in to comment.