Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Nov 3, 2023
1 parent 4bcb824 commit 8970e91
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# setup:

- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4


- name: Setup Haskell
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
HLINT_ACTION_LOG_LEVEL: debug
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up HLint
uses: rwe/actions-hlint-setup@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: remark-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: remark-lint
run: |
docker pull zemanlx/remark-lint:0.1.4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run tests
run: stack test

build-linux:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Compile binary
run: stack --local-bin-path=build/bin install

Expand All @@ -34,7 +34,7 @@ jobs:
needs: test
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Compile binary
run: stack --local-bin-path=build/bin install

Expand All @@ -49,7 +49,7 @@ jobs:
needs: test
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Compile binary
run: stack --local-bin-path=build/bin install

Expand All @@ -65,7 +65,7 @@ jobs:
# needs: test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4

# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v2
Expand Down

0 comments on commit 8970e91

Please sign in to comment.