Skip to content

Commit

Permalink
Update checkout action to latest version (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
normanmaurer authored Oct 4, 2023
1 parent c0cf604 commit 442f312
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

name: ${{ matrix.setup }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Cache .m2/repository
- uses: actions/cache@v3
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: windows-2019
name: windows-x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

name: stage-snapshot-${{ matrix.setup }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Cache .m2/repository
- uses: actions/cache@v3
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: windows-2019
name: stage-snapshot-windows-x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create local staging directory
run: mkdir local-staging
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
# Wait until we have staged everything
needs: [stage-snapshot, stage-snapshot-windows]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

name: ${{ matrix.setup }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Cache .m2/repository
- uses: actions/cache@v3
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: windows-2019
name: windows-x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main

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 @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Cache .m2/repository
- uses: actions/cache@v3
Expand Down

0 comments on commit 442f312

Please sign in to comment.