Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-approve-and-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permissions:
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
Comment thread
rjmurillo marked this conversation as resolved.
# Checking the actor will prevent your Action run failing on non-Dependabot
# PRs but also ensures that it only does work for Dependabot PRs.
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [pull_request_target]
jobs:
autoapprove:
name: Auto-Approve a PR by dependabot
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
Comment thread
MattKotsenas marked this conversation as resolved.
Comment thread
MattKotsenas marked this conversation as resolved.
steps:
- name: Auto approve
uses: cognitedata/auto-approve-dependabot-action@v3.0.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
label_issues:
name: "Issue: add labels"
if: ${{ github.event.action == 'opened' || github.event.action == 'reopened' }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
Comment thread
rjmurillo marked this conversation as resolved.
Comment thread
MattKotsenas marked this conversation as resolved.
permissions:
issues: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on: [pull_request_target]

jobs:
add_label:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
Comment thread
MattKotsenas marked this conversation as resolved.
permissions:
contents: read
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false # Run all OSes, even if one fails, to help narrow down issues that only impact some platforms
matrix:
os: [windows-latest, ubuntu-latest]
os: [windows-latest, ubuntu-24.04-arm]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/milestone-tracking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
pull-requests: write
jobs:
add_milestone:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
if: ${{ github.repository == 'rjmurillo/moq.analyzers' && github.event.pull_request.merged_at != null && github.event.pull_request.milestone == null && github.event.pull_request.base.ref == 'main' }}
steps:
- name: Get milestone data
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler-current-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
Comment thread
rjmurillo marked this conversation as resolved.
steps:
Comment thread
MattKotsenas marked this conversation as resolved.

# Label PRs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

publish:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
Comment thread
MattKotsenas marked this conversation as resolved.
steps:
- name: Download packages
uses: actions/download-artifact@v4
Expand Down