Skip to content

Commit

Permalink
github: Use actions/checkout@v4
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Gladkov <legion@altlinux.org>
  • Loading branch information
legionus committed Feb 7, 2024
1 parent 6e89a9f commit 5501d3c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint-shell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "install tools"
run: sudo apt-get -y -qq install shellcheck
- name: "shellcheck"
Expand All @@ -19,7 +19,7 @@ jobs:
check-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "install tools"
run: sudo apt-get -y -qq install scdoc
- name: "make docs"
Expand All @@ -28,7 +28,7 @@ jobs:
check-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Developer's Certificate of Origin"
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ lint-shell ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "install tools"
run: sudo apt-get -y -qq install dash
- name: "unittests"
Expand All @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ lint-shell ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "install tools"
run: sudo apt-get -y -qq install bash
- name: "unittests"
Expand All @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ lint-shell ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "install tools"
run: sudo apt-get -y -qq install mksh
- name: "unittests"
Expand Down

0 comments on commit 5501d3c

Please sign in to comment.