Skip to content

Commit

Permalink
Merge pull request #185 from TheDragonCode/dependabot/github_actions/…
Browse files Browse the repository at this point in the history
…actions/checkout-4

Bump actions/checkout from 3 to 4
andrey-helldar authored Sep 5, 2023

Verified

This commit was signed with the committer’s verified signature.
m4tx Mateusz Maćkowski
2 parents ff22011 + b2339e9 commit b8b741b
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
echo "tag=${GITHUB_REF##*v}" >> "$GITHUB_OUTPUT"
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

@@ -94,7 +94,7 @@ jobs:

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

- name: Remove old file
run: rm -f builds/codestyle
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:

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

- name: Check the code style
uses: TheDragonCode/codestyler@v3
2 changes: 1 addition & 1 deletion .github/workflows/publish-phar.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
echo "tag=${GITHUB_REF##*v}" >> "$GITHUB_OUTPUT"
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
ref: v${{ steps.tag.outputs.tag }}
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

2 changes: 1 addition & 1 deletion .github/workflows/update-major-version.yml
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

0 comments on commit b8b741b

Please sign in to comment.