Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreding2010 authored Jun 15, 2024
2 parents ee89c7c + 3ddceb8 commit 9157a2c
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 17
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -111,7 +111,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 @@ -137,7 +137,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 @@ -186,7 +186,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 @@ -223,7 +223,7 @@ jobs:
name: Checkstyle Run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
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 @@ -36,7 +36,7 @@ jobs:
JDK: 17
VERSION: ${{needs.release_information.outputs.version}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/[email protected]
with:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
matrix:
repo: [github, ossrh]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
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 @@ -31,7 +31,7 @@ jobs:
JDK: 17
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 @@ -86,7 +86,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 9157a2c

Please sign in to comment.