Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
[ci] Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and jpechane committed Sep 5, 2023
1 parent fd92c09 commit 73133ff
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/cross-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ jobs:
done < SORTED_PULLS.txt
- name: Checkout core repository with pull request branch
if: ${{ steps.branch.outputs.BRANCH_FOUND == 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.user.login }}/debezium
ref: ${{ github.head_ref }}
path: core
- name: Checkout core repository with default base branch
if: ${{ steps.branch.outputs.BRANCH_FOUND != 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: debezium/debezium
ref: ${{ github.base_ref }}
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout JDBC sink connector
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: jdbc
- name: Set up Java 17
Expand All @@ -105,12 +105,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout core repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: debezium/debezium
path: core
- name: Checkout JDBC sink connector
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: jdbc
- name: Set up Java 17
Expand All @@ -134,12 +134,12 @@ jobs:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout core repository
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# repository: debezium/debezium
# path: core
# - name: Checkout JDBC sink connector
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# path: jdbc
# - name: Set up Java 17
Expand All @@ -163,12 +163,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout core repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: debezium/debezium
path: core
- name: Checkout JDBC sink connector
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: jdbc
- name: Set up Java 17
Expand All @@ -192,12 +192,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout core repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: debezium/debezium
path: core
- name: Checkout JDBC sink connector
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: jdbc
- name: Set up Java 17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:

steps:
- name: Checkout core repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: debezium/debezium
ref: ${{ github.ref }}
path: core
- name: Checkout JDBC connector
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: jdbc
- name: Set up JDK
Expand Down

0 comments on commit 73133ff

Please sign in to comment.