Skip to content

Commit

Permalink
Merge branch 'feature/XDR-5474' of github.com:nicholascwd/actions int…
Browse files Browse the repository at this point in the history
…o feature/XDR-5474
  • Loading branch information
nicholascwd committed Feb 19, 2024
2 parents eb2f7f4 + ae5e080 commit af4eeba
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-confluence.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
deploy-to-confluence:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
if: inputs.runDocsBuild == true
with:
node-version: lts/*
Expand All @@ -48,7 +48,7 @@ jobs:
if: inputs.runDocsBuild == true
run: npm run build:docs
shell: bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cncsc/actions
path: ./.actions/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}
lfs: ${{ inputs.useGitLfs }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install node dependencies
Expand All @@ -68,7 +68,7 @@ jobs:
if: inputs.runDefaultBuild == true
run: npm run build -- ${{ inputs.buildArgs }}
shell: bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cncsc/actions
path: ./.actions/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-sharepoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
deploy-to-sharepoint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install node dependencies
Expand All @@ -50,7 +50,7 @@ jobs:
if: inputs.runDefaultBuild == true
run: npm run build
shell: bash
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cncsc/actions
path: ./.actions/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
outputs:
semver: ${{ steps.get-semver.outputs.semver }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install node dependencies
Expand All @@ -41,7 +41,7 @@ jobs:
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN_BASIC }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cncsc/actions
path: ./.actions/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terragrunt-apply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
matrix:
stack: ${{ fromJson(inputs.stacks) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# We haven't officially standardized on squash merges, so the number of commits since the last tag is indeterminate.
# We'll need to pull the full history until the conversations around squash merges are finalized.
fetch-depth: 0 # https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cncsc/actions
path: ./.actions/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-downstream-submodules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
matrix:
repository: ${{ fromJson(inputs.repositories) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: ${{ matrix.repository }}
submodules: recursive
ssh-key: ${{ secrets.CI_BOT_SSH_KEY }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: cncsc/actions
path: ./.actions/
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
runs-on: ubuntu-latest
if: inputs.runPreCommit == true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x

Expand Down Expand Up @@ -83,12 +83,12 @@ jobs:
runs-on: ubuntu-latest
if: inputs.runDefaultLinters == true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*

Expand All @@ -108,12 +108,12 @@ jobs:
runs-on: ubuntu-latest
if: inputs.runDefaultTests == true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GIT_TOKEN_BASIC || github.token }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*

Expand Down

0 comments on commit af4eeba

Please sign in to comment.