Skip to content

Commit 48303ca

Browse files
authored
Update app.yml
Workflow dependency update
1 parent 0d961d4 commit 48303ca

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/app.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
required: true
88
default: 'false'
99
push:
10-
branches:
10+
branches: main
1111
pull_request:
1212
defaults:
1313
run:
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
node_version: [14.x]
24+
node_version: [16.x]
2525
app_type:
2626
- WebRtcDemo
2727
include:
@@ -30,19 +30,20 @@ jobs:
3030
SCRIPT_DIR: ./test/scripts
3131
steps:
3232
- name: 'SETUP: Checkout'
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434
- name: 'SETUP: History'
3535
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
3636
- name: 'SETUP: Node'
37-
uses: actions/setup-node@v2.1.4
37+
uses: actions/setup-node@v3
3838
with:
3939
node-version: ${{ matrix.node_version }}
4040
- name: 'SETUP: Java'
41-
uses: actions/setup-java@v1
41+
uses: actions/setup-java@v3
4242
with:
4343
java-version: '8.x'
44+
distribution: 'temurin'
4445
- name: 'SETUP: Cache Maven archetypes'
45-
uses: actions/cache@v1
46+
uses: actions/cache@v3
4647
with:
4748
path: ~/.m2/repository
4849
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -82,7 +83,7 @@ jobs:
8283
KITE_HOME: ${{ runner.workspace }}/KITE
8384
KITE_SCRIPT_DIR: ${{ runner.workspace }}/KITE/scripts/mac
8485
- name: 'POST-TEST: Upload Artifacts'
85-
uses: actions/upload-artifact@v2
86+
uses: actions/upload-artifact@v3
8687
if: ${{ always() }}
8788
with:
8889
name: kite-artifacts-${{ matrix.app_type }}
@@ -95,7 +96,7 @@ jobs:
9596
!${{ runner.workspace }}/KITE/KITE-Example-Test/js/node_modules
9697
- name: 'POST-TEST: Update Github Pages with Kite Report'
9798
if: github.ref == 'refs/heads/main'
98-
uses: JamesIves/github-pages-deploy-action@3.7.1
99+
uses: JamesIves/github-pages-deploy-action@v4
99100
with:
100101
GITHUB_TOKEN: ${{ secrets.RUDDELL_GITHUB_TOKEN }}
101102
BRANCH: gh-pages # The branch the action should deploy to.

0 commit comments

Comments
 (0)