Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4 (#30281)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Nov 2, 2023
1 parent ea8f99c commit 9c5ff3e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
swap-size-gb: 4

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup NodeJS
uses: ./.github/actions/setup-node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-replica-set: rs0

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup NodeJS
uses: ./.github/actions/setup-node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Unit Tests

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup NodeJS
uses: ./.github/actions/setup-node
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
with:
swap-size-gb: 4

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup NodeJS
uses: ./.github/actions/setup-node
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
echo "github.event_name: ${{ github.event_name }}"
cat $GITHUB_EVENT_PATH
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/meteor-build
with:
Expand All @@ -162,7 +162,7 @@ jobs:
echo "github.event_name: ${{ github.event_name }}"
cat $GITHUB_EVENT_PATH
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/meteor-build
with:
Expand All @@ -187,7 +187,7 @@ jobs:
platform: ['official', 'alpine']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# we only build and publish the actual docker images if not a PR from a fork
- uses: ./.github/actions/build-docker
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
platform: ['official', 'alpine']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./.github/actions/build-docker
with:
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
needs: [build, checks, release-versions]
if: github.event_name == 'release' || github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Restore build
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.base-ref }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.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 Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.CI_PAT }}
Expand Down

0 comments on commit 9c5ff3e

Please sign in to comment.