Skip to content

Commit

Permalink
Merge pull request #65 from just95/dependabot/github_actions/actions/…
Browse files Browse the repository at this point in the history
…upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
just95 authored Dec 25, 2023
2 parents f5e6e5f + f6dd064 commit c31fd51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Find Outdated Packages
run: dart pub outdated --json > outdated.json
- name: Upload Output of `dart pub outdated`
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: outdated
path: outdated.json
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
env:
dart_version: ${{ matrix.dart-version }}
- name: Upload Test Coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
env:
node_version: ${{ matrix.node-version }}
- name: Upload Test Coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/
Expand All @@ -148,7 +148,7 @@ jobs:
--platform chrome
--coverage=./coverage/chrome"
- name: Upload Test Coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- name: Build Documentation
run: dart doc
- name: Upload Documentation
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: api-documentation
path: doc/api
Expand All @@ -232,7 +232,7 @@ jobs:
dart compile exe -o build/bin/decoder bin/decoder.dart
dart compile exe -o build/bin/encoder bin/encoder.dart
- name: Upload Decoder Executable
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: toml-test
path: |
Expand Down

0 comments on commit c31fd51

Please sign in to comment.