Skip to content

Commit

Permalink
Bump the actions/checkout action to v4.
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Oct 1, 2023
1 parent e327501 commit 417f610
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ronin-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
name: "ronin-dev.sh on Ubuntu"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update -qq -y && sudo apt-get install -qq -y shunit2
- name: Configure env
Expand All @@ -34,7 +34,7 @@ jobs:
container: fedora:latest
name: "ronin-dev.sh on Fedora Linux"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: dnf update -q -y && dnf install -q -y shunit2
- name: Configure env
Expand All @@ -49,7 +49,7 @@ jobs:
steps:
- name: Install dependencies
run: zypper ref && zypper --non-interactive in tar gzip findutils shunit2
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Configure env
run: echo "SHUNIT2=$(command -v shunit2 2>/dev/null)" >> $GITHUB_ENV
- name: Run tests
Expand All @@ -60,7 +60,7 @@ jobs:
container: archlinux:latest
name: "ronin-dev.sh on ArchLinux"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman-key --init && \
Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: macos-latest
name: "ronin-dev.sh on macOS"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: brew install shunit2
- name: Configure env
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ronin-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
name: "ronin-install.sh on Ubuntu"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update -qq -y && sudo apt-get install -qq -y shunit2
- name: Configure env
Expand All @@ -34,7 +34,7 @@ jobs:
container: fedora:latest
name: "ronin-install.sh on Fedora Linux"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: dnf update -q -y && dnf install -q -y shunit2
- name: Configure env
Expand All @@ -49,7 +49,7 @@ jobs:
steps:
- name: Install dependencies
run: zypper ref && zypper --non-interactive in tar gzip findutils shunit2
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Configure env
run: echo "SHUNIT2=$(command -v shunit2 2>/dev/null)" >> $GITHUB_ENV
- name: Run tests
Expand All @@ -60,7 +60,7 @@ jobs:
container: archlinux:latest
name: "ronin-install.sh on ArchLinux"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman-key --init && \
Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: macos-latest
name: "ronin-install.sh on macOS"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: brew install shunit2
- name: Configure env
Expand Down

0 comments on commit 417f610

Please sign in to comment.