Skip to content

Commit

Permalink
Update to actions/checkout@v3 (#706)
Browse files Browse the repository at this point in the history
* Update action version

* Update workflows
  • Loading branch information
Jefajers authored Nov 16, 2022
1 parent f19e098 commit dfcbb60
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ env:
jobs:
dependencies:
name: "Automated Dependencies"
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: "Configure"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ on:
jobs:
release:
name: "Release"
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: "Configure"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
tests:
name: "Tests"
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
environment: test
env:
ARM_CLIENT_ID: ${{ secrets.ARM_CLIENT_ID }}
Expand All @@ -29,7 +29,7 @@ jobs:

# Checkout
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wiki-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: ${{ env.wiki_source_repo }}
path: ${{ env.wiki_source_repo }}

- name: Checkout Wiki Repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: ${{ env.wiki_target_repo }}
path: ${{ env.wiki_target_repo }}
Expand Down
2 changes: 1 addition & 1 deletion docs/wiki/Self-Hosted.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Virtual Machine Scale Sets are optimal for hosting your self-hosted agents/runne

## Image

To setup a VMSS for your self-hosted agents/runners you need an image with all the required software installed. The pipelines and actions provided in the [AzOps-Accelerator](https://github.com/Azure/AzOps-Accelerator) repository are using the GitHub Actions Virtual Environments [`ubuntu-20.04`](https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md) image by default. The images includes multiple tools and software including all AzOps requirements.
To setup a VMSS for your self-hosted agents/runners you need an image with all the required software installed. The pipelines and actions provided in the [AzOps-Accelerator](https://github.com/Azure/AzOps-Accelerator) repository are using the GitHub Actions Virtual Environments [`ubuntu-latest`](https://github.com/actions/runner-images/tree/main/images/linux) image by default. The images includes multiple tools and software including all AzOps requirements.

### Build an image using GitHub Actions Virtual Environments

Expand Down

0 comments on commit dfcbb60

Please sign in to comment.