Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update checkout action to latest version #13649

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

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

# Cache .m2/repository
- name: Cache local Maven repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

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

# Cache .m2/repository
- name: Cache local Maven repository
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
# Wait until we have staged everything
needs: stage-snapshot
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
verify-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
name: windows-x86_64-java11-boringssl
needs: verify-pr
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v3
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
packages: write # for uraimo/run-on-arch-action to cache docker images
needs: verify-pr
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Cache .m2/repository
- name: Cache local Maven repository
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
name: ${{ matrix.setup }} build
needs: verify-pr
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Cache .m2/repository
- name: Cache local Maven repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-release-5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
prepare-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main

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 @@ -29,7 +29,7 @@ jobs:
prepare-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: 4.1

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

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

# Cache .m2/repository
- name: Cache local Maven repository
Expand Down