Skip to content

Commit 96437bc

Browse files
CopilotWezSieTato
andcommitted
Fix failing build: update deprecated GitHub Actions to v4
Co-authored-by: WezSieTato <4258662+WezSieTato@users.noreply.github.com> Agent-Logs-Url: https://github.com/WezSieTato/fastlane-plugin-mint/sessions/f7e5d571-ecd9-4dda-b8e6-db0c6cda642b
1 parent 7a4d66d commit 96437bc

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v6
1111
- name: Cache bundler gems
12-
uses: actions/cache@v3
12+
uses: actions/cache@v4
1313
with:
1414
path: vendor/bundle
1515
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
1616
restore-keys: ${{ runner.os }}-gems-
1717
- name: Cache Mint packages
1818
id: mint-cache
19-
uses: actions/cache@v3
19+
uses: actions/cache@v4
2020
with:
2121
path: /Users/runner/.mint
2222
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v6
11-
- uses: actions/cache@v3
11+
- uses: actions/cache@v4
1212
with:
1313
path: vendor/bundle
1414
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile') }}
@@ -23,9 +23,9 @@ jobs:
2323
- name: Run tests
2424
run: bundle exec rake
2525
- name: Codecov
26-
uses: codecov/codecov-action@v3
26+
uses: codecov/codecov-action@v4
2727
- name: Upload artifact
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: test-results
3131
path: test-results

0 commit comments

Comments
 (0)