Skip to content

Commit

Permalink
Merge branch 'dev' into documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
NickPhura authored Apr 3, 2024
2 parents 6f65a2f + 42b936b commit 57a4fc6
Show file tree
Hide file tree
Showing 199 changed files with 6,188 additions and 10,281 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/addComments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 20
steps:
- name: Add Comment
uses: peter-evans/create-or-update-comment@v2
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ github.event.number }}
body: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cleanClosedPR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
# Install Node - for `node` and `npm` commands
# Note: This already uses actions/cache internally, so repeat calls in subsequent jobs are not a performance hit
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -36,7 +36,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cleanMergedPR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
# Install Node - for `node` and `npm` commands
# Note: This already uses actions/cache internally, so repeat calls in subsequent jobs are not a performance hit
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -40,7 +40,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

Expand Down
59 changes: 30 additions & 29 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
# Set to `true` if the latest commit message contains `ignore-skip` anywhere in the message OR the base branch
# is dev, test, or prod.
# Used to disable duplicate action skipping, if needed.
ignore_skip: ${{ contains(steps.head_commit_message.outputs.commit_message, 'ignore-skip') ||
ignore_skip:
${{ contains(steps.head_commit_message.outputs.commit_message, 'ignore-skip') ||
github.head_ref == 'dev' || github.head_ref == 'test' || github.head_ref == 'prod' }}
steps:
- id: skip_check
Expand Down Expand Up @@ -86,7 +87,7 @@ jobs:
# Get the head commit for this pull request, parse out the commit message, and assign to the `commit_message`
# output variable, which is then used to determine if the term `ignore-skip` is found in the commit message.
- name: Checkout head commit
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Get head commit message
Expand All @@ -107,13 +108,13 @@ jobs:
- skipDuplicateActions
steps:
- name: Checkout Target Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

# Cache the repo
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -125,7 +126,7 @@ jobs:
# Install Node - for `node` and `npm` commands
# Note: This already uses actions/cache internally, so repeat calls in subsequent jobs are not a performance hit
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

Expand All @@ -148,13 +149,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -165,7 +166,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down Expand Up @@ -210,13 +211,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -227,7 +228,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down Expand Up @@ -271,13 +272,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -288,7 +289,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down Expand Up @@ -327,13 +328,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -344,7 +345,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down Expand Up @@ -387,13 +388,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -404,7 +405,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down Expand Up @@ -441,13 +442,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -458,7 +459,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down Expand Up @@ -496,13 +497,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -513,7 +514,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down Expand Up @@ -553,13 +554,13 @@ jobs:
steps:
# Install Node - for `node` and `npm` commands
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

# Load repo from cache
- name: Cache repo
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-repo
env:
cache-name: cache-repo
Expand All @@ -570,7 +571,7 @@ jobs:
# Checkout the branch if not restored via cache
- name: Checkout Target Branch
if: steps.cache-repo.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4

# Log in to OpenShift.
# Note: The secrets needed to log in are NOT available if the PR comes from a FORK.
Expand Down
Loading

0 comments on commit 57a4fc6

Please sign in to comment.