Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...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 Oct 2, 2023
1 parent bbfd569 commit a35ca47
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
matrix:
java: [ 11 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
Expand All @@ -55,7 +55,7 @@ jobs:
matrix:
java: [ 11 ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install JDK {{ matrix.java }}
# Uses sha for added security since tags can be updated
uses: actions/setup-java@v3
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
# matrix:
# java: [ 11 ]
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - name: Install JDK {{ matrix.java }}
# # Uses sha for added security since tags can be updated
# uses: actions/setup-java@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quarkus-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
java-version: ${{ env.JAVA_VERSION }}

- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: current-repo
ref: main

- name: Checkout Ecosystem
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
github-token: ${{secrets.GITHUB_TOKEN}}
metadata-file-path: '.github/project.yml'

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Import GPG key
id: import_gpg
Expand Down

0 comments on commit a35ca47

Please sign in to comment.