From e5b02c71828bcc3e6dd98759514a4980646d0ba0 Mon Sep 17 00:00:00 2001 From: Mathias Lang Date: Wed, 5 Jun 2024 18:14:00 +0200 Subject: [PATCH] CI: Upgrade actions to their latest releases --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c4b41e73..5562e4de 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,12 +8,12 @@ jobs: matrix: dc: [dmd-latest, ldc-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install D Compiler uses: dlang-community/setup-dlang@v1 with: compiler: ${{ matrix.dc }} - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: ~/.dub key: ${{ matrix.dc }}-dub-${{ hashFiles('**/dub.selections.json') }}