Skip to content

Commit

Permalink
Merge pull request #152 from bgurney-rh/actions-checkout-v4
Browse files Browse the repository at this point in the history
Use checkout@v4
  • Loading branch information
mulkieran authored Jan 17, 2024
2 parents decf827 + 442a16a commit 4a5834f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
container:
image: fedora:39 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies for Fedora
run: >
dnf install -y
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
task: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
components: ${{ matrix.components }}
Expand All @@ -68,7 +68,7 @@ jobs:
container:
image: fedora:39 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies for Fedora
run: dnf install -y make yamllint
- name: Run yamllint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
task: clippy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
components: ${{ matrix.components }}
Expand All @@ -44,7 +44,7 @@ jobs:
container:
image: fedora:39 # CURRENT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies for Fedora
run: >
dnf install -y
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
container: fedora:39 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: >
dnf install -y
Expand Down

0 comments on commit 4a5834f

Please sign in to comment.