Compare commits

..

1 Commits

Author SHA1 Message Date
Haritha
093593adca Replace self hosted with arm runners 2025-04-28 13:29:45 -05:00
2 changed files with 5 additions and 43 deletions

View File

@@ -82,41 +82,17 @@ jobs:
- os: windows-latest - os: windows-latest
platform: win32 platform: win32
architecture: x64 architecture: x64
- os: setup-actions-ubuntu-arm64-2-core - os: ubuntu-22.04-arm
platform: linux platform: linux
architecture: arm64 architecture: arm64
runner_type: self-hosted
- os: macos-latest - os: macos-latest
platform: darwin platform: darwin
architecture: arm64 architecture: arm64
- os: setup-actions-windows-arm64-4-core - os: windows-11-arm
platform: win32 platform: win32
architecture: arm64 architecture: arm64
runner_type: self-hosted
steps: steps:
- name: Setup Environment on Windows ARM64 Runner
if: matrix.os == 'setup-actions-windows-arm64-4-core'
shell: powershell
run: |
# Install Chocolatey
Set-ExecutionPolicy Bypass -Scope Process -Force
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
echo "C:\ProgramData\Chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
# Install PowerShell
choco install powershell-core -y
echo "C:\Program Files\PowerShell\7" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
# Install Git
choco install git -y
echo "C:\Program Files\Git\cmd" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
# Install 7-Zip
choco install 7zip -y
echo "C:\ProgramData\chocolatey\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
- name: checkout - name: checkout
if: env.excludewinarm == 'true' if: env.excludewinarm == 'true'
uses: actions/checkout@v4 uses: actions/checkout@v4

View File

@@ -10,20 +10,6 @@ permissions:
contents: read # access to read repository's content contents: read # access to read repository's content
actions: read # access to reading actions actions: read # access to reading actions
``` ```
### Note
Thank you for your interest in this GitHub action, however, right now we are not taking contributions. Add commentMore actionsAdd commentMore actions ## Contribution
Contributions are welcome! See [Contributor's Guide](./CONTRIBUTING.md) for more details about contribution process and code structure
We continue to focus our resources on strategic areas that help our customers be successful while making developers' lives easier. While GitHub Actions remains a key part of this vision, we are allocating resources towards other areas of Actions and are not taking contributions to this repository at this time. The GitHub public roadmap is the best place to follow along for any updates on features were working on and what stage theyre in.
We are taking the following steps to better direct requests related to GitHub Actions, including:
1. We will be directing questions and support requests to our [Community Discussions area](https://github.com/orgs/community/discussions/categories/actions)
2. High Priority bugs can be reported through Community Discussions or you can report these to our support team https://support.github.com/contact/bug-report.
3. Security Issues should be handled as per our [security.md](security.md)
We will still provide security updates for this project and fix major breaking changes during this time.
You are welcome to still raise bugs in this repo.