Skip to content

Commit

Permalink
Update workflow actions (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke authored May 13, 2024
1 parent d596864 commit b0b9945
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b0b9945

Please sign in to comment.