Skip to content

Commit

Permalink
chore: update github actions to remove dependency on node12
Browse files Browse the repository at this point in the history
  • Loading branch information
socsieng committed Oct 6, 2023
1 parent 8c027cb commit a790ec5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Expand Up @@ -21,8 +21,8 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v2
- uses: actions/cache@v2
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}-xcode-${{ matrix.xcode }}-${{ hashFiles('**/Package.resolved') }}
Expand All @@ -47,8 +47,8 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v2
- uses: actions/cache@v2
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}-xcode-${{ hashFiles('**/Package.resolved') }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
root_url: ${{ steps.bottle.outputs.root_url }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- id: bottle
name: Create bottle
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
root_url: ${{ steps.bottle.outputs.root_url }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- id: bottle
name: Create bottle
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
name: Update homebrew formula

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Update homebrew formula
run: |
git config user.name github-actions[bot]
Expand Down

0 comments on commit a790ec5

Please sign in to comment.