Skip to content

Commit

Permalink
fix: bump ci action dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RatakondalaArun committed Jan 25, 2024
1 parent 08e893b commit 8f41d02
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Code Analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v4.1.1
- uses: axel-op/dart-package-analyzer@v3
id: analysis
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- name: Setup Dart SDK
uses: dart-lang/setup-dart@v1.5.0
uses: dart-lang/setup-dart@v1.6.0

- name: ⏬ Get Depdendencies
run: dart pub get
Expand All @@ -40,10 +40,10 @@ jobs:
needs: [publish]
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- name: Setup Dart SDK
uses: dart-lang/setup-dart@v1.5.0
uses: dart-lang/setup-dart@v1.6.0

- name: 🧬 Generate docs
run: dart doc --output docs
Expand All @@ -52,7 +52,7 @@ jobs:
run: tree

- name: 📢 Publish docs
uses: JamesIves/github-pages-deploy-action@v4.4.1
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
branch: docs
folder: docs
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ on:
pull_request:
branches:
- master
- development

jobs:
tests:
name: 🧪 Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1

- name: Setup Dart SDK
uses: dart-lang/setup-dart@v1.5.0
uses: dart-lang/setup-dart@v1.6.0

- name: ⏬ Install dependencies
run: dart pub get
Expand Down

0 comments on commit 8f41d02

Please sign in to comment.