Skip to content

Commit

Permalink
Merge pull request #112 from nochlezhka/dependabot/github_actions/act…
Browse files Browse the repository at this point in the history
…ions/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
a-menshchikov authored Sep 17, 2023
2 parents 23f45f6 + 0954545 commit 9c9f98d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout (PR)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0

- name: Checkout (Push)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event_name == 'push'
with:
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout (PR)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event_name == 'pull_request'
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0

- name: Checkout (Push)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event_name == 'push'
with:
fetch-depth: 0
Expand Down

0 comments on commit 9c9f98d

Please sign in to comment.