Skip to content

Commit

Permalink
ci: up ver image in all config
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyaaay committed Dec 15, 2024
1 parent 6c8ccc9 commit 6ade756
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/distroless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
build_base_image:
name: "Build Ockam Distroless Base Image"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
packages: write
environment: release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ockam-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
ORGANIZATION: ${{ github.repository_owner }}
jobs:
build_artifact:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
packages: write
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ockam-healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ defaults:
jobs:
build_ockam_healthcheck:
name: "Build And Publish Ockam Healthcheck Container"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
packages: write
environment: release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-bump-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
pull-requests: write

name: Bump Crates And Create PR
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: release
container:
# Note: Do not update this image has it has installed all binaries
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-draft-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: write

name: Initiate Draft Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: release
outputs:
upload_url: ${{ steps.release_upload_url.outputs.upload_url }}
Expand Down Expand Up @@ -325,8 +325,8 @@ jobs:
fail-fast: false
matrix:
job:
- { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true }
- { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 }
- { target: aarch64-unknown-linux-gnu , os: ubuntu-22.04 , use-cross: true }
- { target: x86_64-unknown-linux-gnu , os: ubuntu-22.04 }
- { target: aarch64-apple-darwin , os: macos-14 }
- { target: x86_64-apple-darwin , os: macos-14 }

Expand All @@ -348,7 +348,7 @@ jobs:
run: cargo install --version 0.2.4 cross

- shell: bash
if: matrix.job.target == 'ubuntu-20.04'
if: matrix.job.target == 'ubuntu-22.04'
run: |
set -x
use_cross_build=${{ matrix.job.use-cross }}
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
sign_release:
name: Sign All Assets
needs: [build_release, create_release, build_elixir_nifs]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: release
permissions:
contents: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-ockam-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-publish-artifact:
if: github.event.inputs.is_release == 'false'
name: "Build And Publish Ockam Container As Draft"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: release
permissions:
actions: read
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
make-latest:
if: github.event.inputs.is_release == 'true'
name: "Make Draft Release Latest"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: release
permissions:
packages: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ defaults:

jobs:
publish_crates:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
container:
# Note: Do not update this image has it has installed all binaries
# to bump crates and generate changelogs which we don't want installed
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/rust-ignored.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,79 +18,79 @@ on:
jobs:
lint-cargo-toml:
name: Rust - lint-cargo-toml
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - lint-cargo-toml"'

lint_cargo_fmt_check:
name: Rust - lint_cargo_fmt_check
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - lint_cargo_fmt_check - Ignored"'

lint_cargo_clippy:
name: Rust - lint_cargo_clippy
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - lint_cargo_clippy - Ignored"'

lint_cargo_deny:
name: Rust - lint_cargo_deny
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - lint_cargo_deny - Ignored"'

build_docs:
name: Rust - build_docs
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - build_docs - Ignored"'

build:
name: Rust - build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - build - Ignored"'

build_examples:
name: Rust - build_examples
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - build_examples - Ignored"'

test:
name: Rust - test
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - test - Ignored"'

check_no_std:
name: Rust - check_no_std
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - check_no_std - Ignored"'

check_cargo_update:
name: Rust - check_cargo_update
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - check_cargo_update - Ignored"'

check_nightly:
name: Rust - check_nightly
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - check_nightly - Ignored"'

build_nightly:
name: Rust - build_nightly
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - build_nightly - Ignored"'

test_nightly:
name: Rust - test_nightly
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Rust - test_nightly - Ignored"'

Expand All @@ -101,7 +101,7 @@ jobs:
build: [linux_86]
include:
- build: linux_86
os: ubuntu-20.04
os: ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- run: 'echo "Rust - lint_cargo_lock - Ignored"'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
analyze:
name: OSSF Scorecards - analyze
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/shell-ignored.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ on:
jobs:
lint_shellcheck:
name: Shell - lint_shellcheck
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Shell - lint_shellcheck - Ignored"'

lint_shfmt:
name: Shell - lint_shfmt
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- run: 'echo "Shell - lint_shfmt - Ignored"'
4 changes: 2 additions & 2 deletions .github/workflows/shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# https://github.com/koalaman/shellcheck
lint_shellcheck:
name: Shell - lint_shellcheck
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
Expand All @@ -56,7 +56,7 @@ jobs:
# https://github.com/mvdan/sh#shfmt
lint_shfmt:
name: Shell - lint_shfmt
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
jobs:
run:
name: Spell check with Typos
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout Actions Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Expand Down

0 comments on commit 6ade756

Please sign in to comment.