Skip to content

Commit

Permalink
github actions: update checkout actions to v4 (#870)
Browse files Browse the repository at this point in the history
  • Loading branch information
kokomo123 authored Sep 24, 2024
1 parent 53d8166 commit 2986dcc
Show file tree
Hide file tree
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
Expand Up @@ -29,7 +29,7 @@ jobs:
url: https://github.com/awesome-selfhosted/awesome-selfhosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- run: make install
Expand All @@ -48,7 +48,7 @@ jobs:
url: https://github.com/awesome-selfhosted/awesome-selfhosted-html
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- run: make install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-dead-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
if: github.repository == 'awesome-selfhosted/awesome-selfhosted-data'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make install
- run: make url_check
2 changes: 1 addition & 1 deletion .github/workflows/check-unmaintained-projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
if: github.repository == 'awesome-selfhosted/awesome-selfhosted-data'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make install
- run: make awesome_lint_strict
2 changes: 1 addition & 1 deletion .github/workflows/daily-update-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: github.repository == 'awesome-selfhosted/awesome-selfhosted-data'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make install
- run: make update_metadata
- name: commit and push changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
syntax-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: make install
- run: make awesome_lint
- run: make export_markdown

0 comments on commit 2986dcc

Please sign in to comment.