Skip to content

Commit

Permalink
Update GitHub Actions runner images to ubuntu-22.04
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Vazquez <[email protected]>
  • Loading branch information
austinvazquez committed Sep 5, 2024
1 parent a0a2671 commit 4f8c8b4
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark_visualization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

jobs:
benchmark:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout main branch
uses: actions/checkout@v4
Expand All @@ -37,7 +37,7 @@ jobs:
path: ${{github.workspace}}/benchmark/performanceTest/output/results.json

download-and-convert-benchmark-result-to-visualization-data:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: benchmark
steps:
- name: Checkout main branch
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

push-benchmark-result-gh-pages:
name: Push benchmark result to Github-pages
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: download-and-convert-benchmark-result-to-visualization-data
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# up a codebuild project. https://docs.aws.amazon.com/codebuild/latest/userguide/action-runner.html
# Then, replace 'soci-snapshotter-instance' with the name of the project you created.
name: Setup Build Matrix
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
# We're using a matrix with a single entry so that we can define some config as YAML rather than
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

# Don't bother bumping deps on forks.
if: ${{ github.repository == 'awslabs/soci-snapshotter' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/comparision-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
check:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
jobs:
label:
if: github.event.pull_request.draft == false
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

permissions:
pull-requests: write
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/prebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
check:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -32,7 +32,7 @@ jobs:
- run: PATH=$PATH:$(pwd) ./scripts/check-flatc.sh

git-secrets:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Pull latest awslabs/git-secrets repo
uses: actions/checkout@v4
Expand All @@ -54,7 +54,7 @@ jobs:
strategy:
matrix:
working_dir: ['.', 'cmd']
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v6
Expand All @@ -64,13 +64,13 @@ jobs:

yamllint:
name: yamllint-lint
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: yamllint .

shellcheck:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
container: koalaman/shellcheck-alpine:v0.10.0
steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ permissions:

jobs:
generate-artifacts:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
container: public.ecr.aws/ubuntu/ubuntu:20.04
env:
# Set during setup.
RELEASE_TAG: ''
Expand Down Expand Up @@ -60,7 +61,7 @@ jobs:

validate-artifacts:
needs: generate-artifacts
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand All @@ -72,7 +73,7 @@ jobs:
create-release:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
needs: [generate-artifacts, validate-artifacts]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
review:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

permissions:
# Write permissions needed to comment review results on PR.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-getting-started-guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
test-update-version:
if: github.event_name == 'pull_request'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

permissions:
contents: read
Expand All @@ -35,7 +35,7 @@ jobs:

update-version:
if: github.event_name == 'release'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

permissions:
# Write permissions needed to create pull request.
Expand Down

0 comments on commit 4f8c8b4

Please sign in to comment.