Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(ci): upgrade GitHub Actions to latest versions
- actions/checkout@v2 → @v4
- subosito/flutter-action@v1 → @v2

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <[email protected]>
  • Loading branch information
vincenzopalazzo and claude committed Dec 4, 2025
commit eab731d88e6574152a4e39f8a2eb52c150052c88
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: ${{matrix.channel}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codcoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Run tests with coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v2 # required!
uses: actions/checkout@v4 # required!

- name: 'publish graphql to to Pub.dev'
uses: k-paxian/dart-package-publisher@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v2 # required!
uses: actions/checkout@v4 # required!

- name: 'publish graphql-flutter to to Pub.dev'
uses: k-paxian/dart-package-publisher@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: 'graphql publish to to Pub.dev'
uses: k-paxian/dart-package-publisher@master
with:
Expand All @@ -26,7 +26,7 @@ jobs:
- publishing_client
steps:
- name: 'Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v4
# FIXME: when we bump a new release, we can have problem
# in dry mode because the new release is not on the pub.dev
# yet
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install dependencies
Expand Down
Loading