From b0b99452b747bdeabbd3f9debe04eae8fcfca427 Mon Sep 17 00:00:00 2001 From: James Clarke Date: Mon, 13 May 2024 13:31:30 +0100 Subject: [PATCH] Update workflow actions (#41) --- .github/workflows/publish.yaml | 4 ++-- .github/workflows/tests.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 6046359..bfa1f19 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -3,7 +3,7 @@ name: Publish to pub.dev on: push: tags: - - 'v[0-9]+.[0-9]+.[0-9]+*' + - "v[0-9]+.[0-9]+.[0-9]+*" jobs: publish: @@ -12,7 +12,7 @@ jobs: id-token: write # This is required for authentication using OIDC runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dart-lang/setup-dart@v1 - name: Install dependencies run: dart pub get diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 71a8139..adc9ae2 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -25,21 +25,21 @@ jobs: edgedb-version: "3" # LTS steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: fetch-depth: 50 submodules: true - name: Setup WSL if: ${{ matrix.os == 'windows-2019' }} - uses: vampire/setup-wsl@v1 + uses: vampire/setup-wsl@v3 with: wsl-shell-user: edgedb additional-packages: ca-certificates curl - name: Set up Dart - uses: dart-lang/setup-dart@v1.3 + uses: dart-lang/setup-dart@v1 - name: Install dependencies run: dart pub get