Skip to content

Commit

Permalink
Merge pull request #14 from byu-oit/updateGHANode
Browse files Browse the repository at this point in the history
fix: update deploy node version and update GHA modules to versions th…
  • Loading branch information
jsterner30 authored Jan 30, 2024
2 parents eeb61d9 + e2fc049 commit c6946de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ on:
types: [ opened, reopened, synchronize, edited ]

env:
node_version: "14"
node_version: "20"

jobs:
test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v2.1.4
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -48,11 +48,11 @@ jobs:
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
Expand All @@ -61,7 +61,7 @@ jobs:
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [master]

env:
node_version: "14"
node_version: "20"

jobs:
publish:
Expand All @@ -21,7 +21,7 @@ jobs:
token: ${{ github.token }}

- name: Set up Node.js
uses: actions/setup-node@v2.1.4
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
registry-url: https://npm.pkg.github.com
Expand All @@ -39,7 +39,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Node.js
uses: actions/setup-node@v2.1.4
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
registry-url: https://registry.npmjs.org
Expand Down

0 comments on commit c6946de

Please sign in to comment.