Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
Bump actions/checkout from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v3)

---
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] committed Mar 7, 2022
1 parent d65fc62 commit 9c7e202
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
distribution: 'adopt'

- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
# Do not trigger a checkout when opening PRs from a fork (helps avoid
# "pwn request". See https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target )
if: github.event_name != 'pull_request_target'
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: Dependabot Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
# Dependabot can only do the checkout at the HEAD of the PR branch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
distribution: 'adopt'

- name: Git Checkout
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
uses: actions/checkout@v3
# Do not trigger a checkout when opening PRs from a fork (helps avoid
# "pwn request". See https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target )
if: github.event_name != 'pull_request_target'
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: Dependabot Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
if: github.event_name == 'pull_request_target'
with:
# Dependabot can only do the checkout at the HEAD of the PR branch
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:
java-version: 11
distribution: 'adopt'

- uses: actions/checkout@v2.4.0
- uses: actions/checkout@v3

- name: Get the version
id: get_version
Expand Down

0 comments on commit 9c7e202

Please sign in to comment.