Skip to content

Commit

Permalink
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 Jan 18, 2024
1 parent b4836df commit 04f8929
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jooqx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
env:
PROFILE: 'ciBuild'
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Build
uses: ./.github/actions/gha-build
Expand All @@ -75,7 +75,7 @@ jobs:
env:
PROFILE: 'ciSonar'
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jpa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: Build & Test Java ${{ matrix.java }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Build
uses: ./.github/actions/gha-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: Build & Test Java ${{ matrix.java }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- name: Build
uses: ./.github/actions/gha-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/subwf-context.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
shouldBuild: ${{ steps.verify.outputs.shouldBuild }}
shouldPublish: ${{ steps.verify.outputs.shouldPublish }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.githubToken }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/subwf-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
if: inputs.isRelease != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- uses: actions/[email protected]
with:
Expand All @@ -76,7 +76,7 @@ jobs:
if: inputs.isRelease == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4

- uses: actions/[email protected]
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wfd-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
needs: context
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4
with:
ref: ${{ inputs.sha }}
token: ${{ secrets.OSS_GITHUB_TOKEN }}
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
node-version: '16'

- name: Checkout webdocs
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ env.WEBDOCS_REPO }}
ref: ${{ env.WEBDOCS_REF }}
Expand All @@ -158,7 +158,7 @@ jobs:
yarn antora --fetch antora-playbook.yml --stacktrace
- name: Checkout ${{ env.PROJECT_NAME }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ env.PROJECT_REPO }}
ref: ${{ env.PROJECT_REF }}
Expand Down

0 comments on commit 04f8929

Please sign in to comment.