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

CI: Updated the checkout action version. #221

Merged
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/bsd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build
uses: vmactions/[email protected]
with:
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
container: alpine:latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build
env:
CC: ${{ matrix.compiler }}
Expand All @@ -25,7 +25,7 @@ jobs:
container: debian:stable
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build
env:
CC: ${{ matrix.compiler }}
Expand All @@ -40,7 +40,7 @@ jobs:
container: fedora:latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build
env:
CC: ${{ matrix.compiler }}
Expand All @@ -54,8 +54,12 @@ jobs:
runs-on: ubuntu-latest
container: opensuse/leap:latest
steps:
- name: Install dependencies required by the checkout action
run: |
zypper --non-interactive refresh
zypper --non-interactive install gzip tar
- name: Checkout sources
uses: actions/checkout@v1 # Action checkout@v2 triggers an error about non existing "tar" command
uses: actions/checkout@v4
- name: Build
env:
CC: ${{ matrix.compiler }}
Expand All @@ -70,7 +74,7 @@ jobs:
runs-on: ${{ matrix.ubuntu_version }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build
env:
CC: ${{ matrix.compiler }}
Expand Down