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 Nov 7, 2023
1 parent a9c17fa commit cafbca2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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
12 changes: 6 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
outputs:
buildNumber: ${{ steps.ver.outputs.BUILD_NUMBER }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Preload packages into cache
id: builder
uses: ./.github/actions/preinstall
Expand All @@ -136,7 +136,7 @@ jobs:
run: |
echo Cannot run Appium tests when build was triggered by dependabot
exit 1
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
if: matrix.module-name == 'openmaqs-playwright'
with:
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
VERSION: ${{ needs.getVersion.outputs.buildNumber }}
steps:
- name: Checkout Source
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
name: Checkstyle Run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
environment: OSSRH
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.event_name != 'schedule'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
JDK: 11
VERSION: ${{needs.release_information.outputs.version}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 15
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
matrix:
repo: [github, ossrh]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 15
uses: actions/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
JDK: 11
VERSION: ${{needs.update_release_draft.outputs.version}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{env.JDK}}
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
# #repo: [github, ossrh]
# repo: [ ossrh ]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - name: Set up JDK ${{env.JDK}}
# uses: actions/[email protected]
# with:
Expand Down

0 comments on commit cafbca2

Please sign in to comment.