Skip to content

Commit 259a70c

Browse files
authored
Switch to sliding tags in Github actions (haskell/ghcide#915)
* Switch to sliding tags in Github actions * Allow insecure actions should no longer be needed actions/setup-haskell#44
1 parent a93b206 commit 259a70c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ghcide/.github/workflows/bench.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- run: git fetch origin master # check the master branch for benchmarking
17-
- uses: actions/setup-haskell@v1.1.3
17+
- uses: actions/setup-haskell@v1
1818
with:
1919
ghc-version: ${{ matrix.ghc }}
2020
cabal-version: '3.2'

ghcide/.github/workflows/test.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ jobs:
55
test:
66
timeout-minutes: 360
77
runs-on: ${{ matrix.os }}
8-
env:
9-
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
108
strategy:
119
fail-fast: false
1210
matrix:
@@ -27,7 +25,7 @@ jobs:
2725

2826
steps:
2927
- uses: actions/checkout@v2
30-
- uses: actions/setup-haskell@v1.1.3
28+
- uses: actions/setup-haskell@v1
3129
with:
3230
ghc-version: ${{ matrix.ghc }}
3331
cabal-version: '3.2'

0 commit comments

Comments
 (0)