Skip to content

Commit

Permalink
Update referenced actions to Node 20 (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Feb 15, 2024
1 parent ebf762d commit 7c63197
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to-confluence.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ 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 }}
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to-s3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ 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 }}
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to-sharepoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ 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 }}
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
4 changes: 2 additions & 2 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ 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 }}
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
6 changes: 3 additions & 3 deletions .github/workflows/validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
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,7 +83,7 @@ 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 }}
Expand All @@ -108,7 +108,7 @@ 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 }}
Expand Down

0 comments on commit 7c63197

Please sign in to comment.