Skip to content

Commit

Permalink
Merge pull request #1457 from boostercloud/dependabot/github_actions/…
Browse files Browse the repository at this point in the history
…actions/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
Javier Toledo authored Oct 8, 2023
2 parents f2b7833 + 632dc31 commit 121d78e
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/re_test-integration-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/test-integration-run-one
with:
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/test-integration-run-one
with:
Expand All @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./.github/actions/test-integration-run-one
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/re_test-integration-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run integration test
uses: ./.github/actions/test-integration-run-one
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run integration test
uses: ./.github/actions/test-integration-run-one
Expand All @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run integration test
uses: ./.github/actions/test-integration-run-one
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/re_test-integration-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run integration test
uses: ./.github/actions/test-integration-run-one
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/re_test-integration-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run integration test
uses: ./.github/actions/test-integration-run-one
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/re_test-integration-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-node@v3
with:
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Fork based /integration checkout
id: fork-based-checkout
if: inputs.pr_number != '0' && inputs.command_sha != '' && contains(inputs.pr_sha, inputs.command_sha)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: 'refs/pull/${{ inputs.pr_number }}/merge'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run Booster update script
run: bash .github/actions/update-website/action.sh
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wf_check-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wf_check-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build
uses: ./.github/actions/build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wf_publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run:
working-directory: website
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wf_publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
needs: integration-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # required for Rush change
token: ${{ secrets.GITHUB_TOKEN_ACTION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wf_test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build
uses: ./.github/actions/build
Expand Down

0 comments on commit 121d78e

Please sign in to comment.