Skip to content

Commit

Permalink
Upgrade github actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jangko committed Jan 27, 2024
1 parent c0b37d6 commit a5446de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ${{ matrix.builder }}
steps:
- name: Checkout nim-graphql
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: nim-graphql
submodules: false
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Restore llvm-mingw (Windows) from cache
if: runner.os == 'Windows'
id: windows-mingw-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: external/mingw-${{ matrix.target.cpu }}
key: 'mingw-llvm-17-${{ matrix.target.cpu }}'
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Restore Nim DLLs dependencies (Windows) from cache
if: runner.os == 'Windows'
id: windows-dlls-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: external/dlls-${{ matrix.target.cpu }}
key: 'dlls-${{ matrix.target.cpu }}'
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Restore prebuilt Nim from cache
id: nim-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: NimBinaries
key: '${{ matrix.test_lang }}-${{ matrix.target.os }}-${{ matrix.target.cpu }}-${{ steps.versions.outputs.nimbus_build_system }}'
Expand Down

0 comments on commit a5446de

Please sign in to comment.