Skip to content

Commit

Permalink
Update packages and package info (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Sep 25, 2024
1 parent 92d6496 commit c7a0523
Show file tree
Hide file tree
Showing 16 changed files with 5,383 additions and 4,692 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @cncsc/conventions-reviewers @cncsc/devops-reviewers @cncsc/security-reviewers
* @fcgroup/conventions-reviewers @fcgroup/devops-reviewers @fcgroup/security-reviewers
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
on-success:
name: Semantic Release
uses: cncsc/actions/.github/workflows/semantic-release.yaml@main
uses: fcgroup/actions/.github/workflows/semantic-release.yaml@main
secrets:
GIT_TOKEN_BASIC: ${{ secrets.GIT_TOKEN_BASIC }}
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ on:
jobs:
ci:
name: Validation
uses: cncsc/actions/.github/workflows/validation.yaml@main
uses: fcgroup/actions/.github/workflows/validation.yaml@main
with:
additionalHomebrewPackages: shellcheck
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-confluence.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
shell: bash
- uses: actions/checkout@v4
with:
repository: cncsc/actions
repository: fcgroup/actions
path: ./.actions/
- name: Install Mark
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
shell: bash
- uses: actions/checkout@v4
with:
repository: cncsc/actions
repository: fcgroup/actions
path: ./.actions/
- name: Install Node dependencies
working-directory: ./.actions/scripts/deployment/deploy-files-to-s3/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-sharepoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
shell: bash
- uses: actions/checkout@v4
with:
repository: cncsc/actions
repository: fcgroup/actions
path: ./.actions/
- name: Install Node dependencies
working-directory: ./.actions/scripts/deployment/deploy-files-to-sharepoint/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN_BASIC }}
- uses: actions/checkout@v4
with:
repository: cncsc/actions
repository: fcgroup/actions
path: ./.actions/
- id: get-semver
name: Read generated semver
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terragrunt-apply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- uses: actions/checkout@v4
with:
repository: cncsc/actions
repository: fcgroup/actions
path: ./.actions/

- id: verify_files_changed
Expand Down
8 changes: 0 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@ repos:
- id: mixed-line-ending
args: [--fix=no]
- id: trailing-whitespace
- repo: local
hooks:
- id: npm-lint-scripts
name: run npm lint
entry: npm run lint
language: system
types: [javascript]
stages: [push]
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.0.8
hooks:
Expand Down
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@cncsc/semantic-release-config/base"
"extends": "@bdrk/semantic-release-config/base"
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2022 Armor Defense Inc.
Copyright 2022 Fritz Consulting Group, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GitHub Actions Workflows

Reusable GitHub Action workflows for CNCSC and member projects.
Reusable GitHub Action workflows for FCG projects.

Runs on `ubuntu` and `macos`.

Expand All @@ -14,7 +14,7 @@ Runs `pre-commit` validation and executes the projects `lint` script from `packa
jobs:
ci:
name: Validation
uses: cncsc/actions/.github/workflows/validation.yaml@main
uses: fcgroup/actions/.github/workflows/validation.yaml@main
with:
runPreCommit: true # optional
runDefaultLinters: true # optional
Expand All @@ -28,7 +28,7 @@ jobs:
jobs:
cd:
name: Release
uses: cncsc/actions/.github/workflows/semantic-release.yaml@main
uses: fcgroup/actions/.github/workflows/semantic-release.yaml@main
secrets:
GIT_TOKEN_BASIC: ${{ secrets.GIT_TOKEN_BASIC }} # required
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }} # optional
Expand Down
Loading

0 comments on commit c7a0523

Please sign in to comment.