Skip to content

Commit

Permalink
Update actions/checkout to v4
Browse files Browse the repository at this point in the history
Closes gh-11
  • Loading branch information
sjohnr committed Jan 24, 2024
1 parent 3f7d01e commit 3a9acd5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
outputs:
should-deploy-artifacts: ${{ steps.should-deploy-artifacts.outputs.result }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{ inputs.java-version }}
uses: spring-io/spring-gradle-build-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
artifacts-deployed: ${{ steps.artifacts-deployed.outputs.result }}
project-version: ${{ steps.project-version.outputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: spring-io/spring-gradle-build-action@v2
- name: Deploy Artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
outputs:
docs-deployed: ${{ steps.docs-deployed.outputs.result }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: spring-io/spring-gradle-build-action@v2
- name: Deploy Docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
outputs:
schema-deployed: ${{ steps.schema-deployed.outputs.result }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: spring-io/spring-gradle-build-action@v2
- name: Deploy Schema
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perform-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
RELEASE_REPO: ${{ inputs.release-repo-url }}
ARTIFACT_PATH: ${{ inputs.artifact-path }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: spring-io/spring-gradle-build-action@v2
- id: project-version
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
env:
BRANCH: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
- name: Set up JDK 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK ${{ inputs.java-version }}
uses: spring-io/spring-gradle-build-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-scheduled-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Update Scheduled Release Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
- name: Set up JDK 17
Expand Down

0 comments on commit 3a9acd5

Please sign in to comment.