From 7c63197b8e3442474f6477414fdf34e63c4c9186 Mon Sep 17 00:00:00 2001 From: Luke Fritz Date: Thu, 15 Feb 2024 08:42:01 -0600 Subject: [PATCH] Update referenced actions to Node 20 (patch) --- .github/workflows/deploy-to-confluence.yaml | 4 ++-- .github/workflows/deploy-to-s3.yaml | 4 ++-- .github/workflows/deploy-to-sharepoint.yaml | 4 ++-- .github/workflows/semantic-release.yaml | 4 ++-- .github/workflows/terragrunt-apply.yaml | 4 ++-- .github/workflows/update-downstream-submodules.yaml | 4 ++-- .github/workflows/validation.yaml | 6 +++--- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/deploy-to-confluence.yaml b/.github/workflows/deploy-to-confluence.yaml index df9130b..c65beaa 100644 --- a/.github/workflows/deploy-to-confluence.yaml +++ b/.github/workflows/deploy-to-confluence.yaml @@ -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 }} @@ -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/ diff --git a/.github/workflows/deploy-to-s3.yaml b/.github/workflows/deploy-to-s3.yaml index b7cbb86..87c5216 100644 --- a/.github/workflows/deploy-to-s3.yaml +++ b/.github/workflows/deploy-to-s3.yaml @@ -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 }} @@ -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/ diff --git a/.github/workflows/deploy-to-sharepoint.yaml b/.github/workflows/deploy-to-sharepoint.yaml index ef00587..993adfd 100644 --- a/.github/workflows/deploy-to-sharepoint.yaml +++ b/.github/workflows/deploy-to-sharepoint.yaml @@ -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 }} @@ -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/ diff --git a/.github/workflows/semantic-release.yaml b/.github/workflows/semantic-release.yaml index ae1cb01..9984aaf 100644 --- a/.github/workflows/semantic-release.yaml +++ b/.github/workflows/semantic-release.yaml @@ -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 }} @@ -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/ diff --git a/.github/workflows/terragrunt-apply.yaml b/.github/workflows/terragrunt-apply.yaml index 625ec55..d595adf 100644 --- a/.github/workflows/terragrunt-apply.yaml +++ b/.github/workflows/terragrunt-apply.yaml @@ -35,7 +35,7 @@ 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. @@ -43,7 +43,7 @@ jobs: submodules: recursive token: ${{ secrets.GIT_TOKEN_BASIC || github.token }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: cncsc/actions path: ./.actions/ diff --git a/.github/workflows/update-downstream-submodules.yaml b/.github/workflows/update-downstream-submodules.yaml index 884619c..7cc2e19 100644 --- a/.github/workflows/update-downstream-submodules.yaml +++ b/.github/workflows/update-downstream-submodules.yaml @@ -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/ diff --git a/.github/workflows/validation.yaml b/.github/workflows/validation.yaml index a11cd56..c3c5bd1 100644 --- a/.github/workflows/validation.yaml +++ b/.github/workflows/validation.yaml @@ -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 @@ -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 }} @@ -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 }}