Skip to content

Bump the github-actions group with 5 updates #351

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions .github/workflows/canary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}

- uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
- uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046
with:
channel: main

Expand All @@ -47,7 +47,7 @@ jobs:
echo ${{ github.event.number }} > output/issueNumber

- name: Find Comment
uses: peter-evans/find-comment@9735ba2ed6a47d05499d9b653e05f347f3031e89
uses: peter-evans/find-comment@2b835d608dd789971fb4c563f0dd0c82f2cf23a7
id: fc
with:
issue-number: ${{ github.event.number }}
Expand All @@ -60,7 +60,7 @@ jobs:

- name: Upload markdown
if: success() || failure()
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: output
path: output/
2 changes: 1 addition & 1 deletion .github/workflows/canary_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
- uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046
with:
channel: main

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,14 @@ jobs:

steps:
- name: Download All Artifacts
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
with:
path: single-comments

- run: ls -R single-comments

- name: Find Comment
uses: peter-evans/find-comment@9735ba2ed6a47d05499d9b653e05f347f3031e89
uses: peter-evans/find-comment@2b835d608dd789971fb4c563f0dd0c82f2cf23a7
id: fc
with:
issue-number: ${{ github.event.number }}
Expand All @@ -267,7 +267,7 @@ jobs:
run: echo ${{ steps.fc.outputs.comment-id }} >> output/commentId

- name: Upload folder with number and markdown
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: output
path: output/
4 changes: 2 additions & 2 deletions .github/workflows/health_base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
with:
sdk: ${{ inputs.sdk }}

- uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
- uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046
if: ${{ inputs.flutter_packages != '' }}
with:
channel: ${{ inputs.channel }}
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:

- name: Upload markdown
if: success() || failure()
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: comment-${{ inputs.check }}
path: current_repo/output/comment.md
10 changes: 5 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
with:
submodules: ${{ inputs.checkout_submodules }}

- uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
- uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046
if: ${{ inputs.use-flutter }}
with:
channel: ${{ inputs.sdk }}
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
echo "comment=$COMMENT_ID" >> "$GITHUB_OUTPUT"

- name: Create comment
uses: peter-evans/create-or-update-comment@5a1e4b77bf9c12cc13806fc353ad08dc110f78ce
uses: peter-evans/create-or-update-comment@998d73b60e291c5ff04ef95d7a7021dede2b9878
if: ${{ (hashFiles('output/comment.md') != '') && inputs.write-comments && (steps.comment-id.outputs.comment == '') }}
continue-on-error: true
with:
Expand All @@ -179,7 +179,7 @@ jobs:
edit-mode: replace

- name: Update comment
uses: peter-evans/create-or-update-comment@5a1e4b77bf9c12cc13806fc353ad08dc110f78ce
uses: peter-evans/create-or-update-comment@998d73b60e291c5ff04ef95d7a7021dede2b9878
if: ${{ (hashFiles('output/comment.md') != '') && inputs.write-comments && (steps.comment-id.outputs.comment != '') }}
with:
comment-id: ${{ steps.comment-id.outputs.comment }}
Expand All @@ -193,7 +193,7 @@ jobs:

- name: Upload folder with number and markdown
if: ${{ !inputs.write-comments }}
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
with:
name: output
path: output/
Expand All @@ -214,7 +214,7 @@ jobs:
with:
submodules: ${{ inputs.checkout_submodules }}

- uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff
- uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046
if: ${{ inputs.use-flutter }}
with:
channel: ${{ inputs.sdk }}
Expand Down
Loading