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 3 to 4 #27

Merged
merged 1 commit into from
Nov 20, 2023
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
steps:
# Check out (a.k.a. clones) the AquariWM repository.
- name: Checkout AquariWM
uses: actions/checkout@v3
uses: actions/checkout@v4

# Install `libsystemd-dev`, `libudev-dev`, `libseat-dev`, `libinput-dev`, and
# `libxkbcommon-dev` to satisfy dependencies.
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
steps:
# Check out (a.k.a. clones) the AquariWM repository.
- name: Checkout AquariWM
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.fix-n-format.outputs.commit-id }}

Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
# Check out (a.k.a. clones) the AquariWM repository with fixes made by `clippy`
# in `clippy-fixes`, if any.
- name: Checkout AquariWM
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.fix-n-format.outputs.commit-id }}

Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
# Check out (a.k.a. clones) the AquariWM repository with fixes made by `clippy` in
# `clippy-fixes`, if any, and formatting made by `rustfmt` in `auto-format`, if any.
- name: Checkout AquariWM
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.fix-n-format.outputs.commit-id }}
path: aquariwm
Expand All @@ -209,7 +209,7 @@ jobs:

# Check out a template to put the generated docs in.
- name: Checkout AquariWM docs template
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: AquariWM/aquariwm-docs-template
path: template
Expand Down
Loading