Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent 51f18d5 commit 49bc7e7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
cabalopts: ''
testopts: '--test-option=--hide-successes --test-option=--ansi-tricks=false'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# needed by memory
- name: Install numa
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# declare/restore cached things
# caching doesn't work for scheduled runs yet
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
cabal: '3.2'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install cabal/ghc
run: |
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
- ghc: '9.2.2'
cabal: '3.6'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install cabal/ghc
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
check-commit-msg-length:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check commit message length
run: |
# Get last commit messages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- archiving
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Validate writer output
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install recent cabal/ghc
uses: haskell/actions/setup@v1
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: |
stack update
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: macOS-10.15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: |
stack update
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create linux package
run: |
make debpkg
Expand All @@ -36,7 +36,7 @@ jobs:
arch: "x64"
stack_opts: "-j1"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: |
stack update
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
runs-on: macOS-10.15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build executable
run: |
Expand Down

0 comments on commit 49bc7e7

Please sign in to comment.