Skip to content

Commit 9287a0e

Browse files
committed
use latest dart in github actions workflows
1 parent 8423ee6 commit 9287a0e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/dart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
container:
9-
image: dart:2.17
9+
image: dart
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Install dependencies

.github/workflows/publish_demos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-and-deploy:
88
runs-on: ubuntu-latest
99
container:
10-
image: google/dart:latest
10+
image: dart
1111
steps:
1212
- name: Checkout 🛎️
1313
uses: actions/[email protected]

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
runs-on: ubuntu-latest
1111
container:
12-
image: dart:2.17
12+
image: dart
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v1

.github/workflows/release_unreleased_prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
release:
1313
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
1414
runs-on: ubuntu-latest
15-
container: dart:2.17.7
15+
container: dart
1616
permissions:
1717
contents: write
1818

0 commit comments

Comments
 (0)