Skip to content

Commit

Permalink
Bumps us to macos-13 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGraves authored Nov 20, 2024
1 parent 585f436 commit acd4c25
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/bigtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
ABQ_CREATE_MANUAL_ACCESS_TOKEN: ${{ secrets.ABQ_CREATE_MANUAL_ACCESS_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: START dev queue
run: |
Expand Down Expand Up @@ -59,11 +59,11 @@ jobs:
jest_abq_time: ${{ steps.benchmark.outputs.jest_abq_worker_time }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "16"
cache: "npm"
Expand Down Expand Up @@ -131,11 +131,11 @@ jobs:
shard: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "16"
cache: "npm"
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
overhead_stddev: ${{ steps.collect.outputs.overhead_stddev }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- id: collect
run: |
Expand All @@ -211,7 +211,7 @@ jobs:
ABQ_CREATE_MANUAL_ACCESS_TOKEN: ${{ secrets.ABQ_CREATE_MANUAL_ACCESS_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get status emoji
id: status
if: always()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:
architecture: aarch64
cross-target: "aarch64-unknown-linux-musl"
container: messense/rust-musl-cross:aarch64-musl@sha256:777bd4c61179c38dc213bb8472500584646d28fd4a7c3e0b30b9ef70cb446d58
- runs-on: macos-12 # use an older version for broader osx support
- runs-on: macos-13 # use an older version for broader osx support
deprecated-platform: darwin_x86-64
os: darwin
architecture: x86_64
cross-target: ""
- runs-on: macos-12 # first OS X to support arm64 -- so the first os for cross compilation
- runs-on: macos-13 # first OS X to support arm64 -- so the first os for cross compilation
deprecated-platform: darwin_aarch64
os: darwin
architecture: aarch64
Expand All @@ -88,7 +88,7 @@ jobs:
AWS_DEFAULT_OUTPUT: json
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # get whole history for versioning
ref: ${{inputs.ref}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_and_package_development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
ABQ_NO_REBUILD: true
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # get whole history for versioning

Expand Down Expand Up @@ -95,12 +95,12 @@ jobs:
- name: Lint github workflows
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/3a2f2c755b6442ec7999b28dfd107e1bb9853389/scripts/download-actionlint.bash)
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/97871a555712e90a2f4f9ae0f42794bd61af88bc/scripts/download-actionlint.bash)
./actionlint -color
shell: bash

# setup testdata
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "14"
cache: "npm"
Expand Down

0 comments on commit acd4c25

Please sign in to comment.