Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update actions/checkout action to v4 #240

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-if-changelog-is-updated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- shell: bash
run: |
readonly PR_URL='${{ github.server_url }}/${{ github.repository }}/pull/${{ github.event.pull_request.number }}'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
latest-commit-diff: ${{ steps.latest-commit-diff.outputs.result }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- id: detector
uses: sounisi5011/npm-packages@actions/get-nodejs-versions-array-v0
- name: Get the diff from the latest commit where the GitHub Actions succeeded
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
needs: if-run-ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Reconfigure git to use HTTP authentication
# see https://stackoverflow.com/a/69634516
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
if ('/' in diff_files) or (0 < len(diff_files - ignore_files - {''})):
export_var('run-test', '1')

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ env.run-test }}

- name: Reconfigure git to use HTTP authentication
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-license-year.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
update-license-year:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Find all LICENSE files
id: find-all-license-files
Expand Down
Loading