Skip to content

Commit

Permalink
Update runs-on value in release.yml and test.yml workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dz0ny committed May 2, 2024
1 parent 4f7ff1e commit 769ccde
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
release:
name: Release and Archive Native
runs-on: macos-13
runs-on: macos-latest
timeout-minutes: 30
permissions:
issues: write
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
release-setapp:
name: Release and Archive Setapp
runs-on: macos-13
runs-on: macos-latest
timeout-minutes: 30
permissions:
issues: write
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
lint:
name: Lint
runs-on: macos-13
runs-on: macos-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-lint
cancel-in-progress: true
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
build:
name: Build and Archive Native
needs: lint
runs-on: macos-13
runs-on: macos-latest
timeout-minutes: 15
permissions:
issues: write
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
test-profile-default:
strategy:
matrix:
os: [macos-12, macos-13]
os: [macos-12, macos-latest]
runs-on: ${{ matrix.os }}
name: Profile - Default
timeout-minutes: 6
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
test-profile-bad:
strategy:
matrix:
os: [macos-12, macos-13]
os: [macos-12, macos-latest]
runs-on: ${{ matrix.os }}
name: Profile - Bad
timeout-minutes: 6
Expand All @@ -304,7 +304,7 @@ jobs:
run: .github/bin/profile bad
build-setapp:
name: Build and Archive SetApp
runs-on: macos-13
runs-on: macos-latest
timeout-minutes: 15
needs: lint
permissions:
Expand Down

0 comments on commit 769ccde

Please sign in to comment.