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

Bump actions/checkout from 2 to 4 #2

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
sudo apt-get update --assume-yes
sudo apt-get install --assume-yes --no-install-recommends clang g++ git make libc++-dev libc++abi-dev pkg-config
- name: Checkout InspIRCd@insp3
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: 'inspircd/inspircd'
ref: 'insp3'
path: 'inspircd'
- name: Checkout self
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: 'contrib'
- name: (Pull Request) Set the build target to only the changed modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
brew update || true
brew install pkg-config
- name: Checkout InspIRCd@insp3
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: 'inspircd/inspircd'
ref: 'insp3'
path: 'inspircd'
- name: Checkout self
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: 'contrib'
- name: (Pull Request) Set the build target to only the changed modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regen-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
if: github.repository == 'inspircd/inspircd-contrib'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Regenerate the module list
Expand Down