From c6fd57ec8b261ff32e99f8770c2b327a149c0ea4 Mon Sep 17 00:00:00 2001 From: thesayyn Date: Mon, 6 May 2024 13:43:30 -0700 Subject: [PATCH] don't freak out i am debugging we are safe --- .github/workflows/ci.yaml | 30 +++++++++++++++--------------- WORKSPACE | 4 ++-- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 64ae974b3..f233634e4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,9 +3,9 @@ name: CI on: workflow_dispatch: # Allow manual runs. pull_request: - branches: [ 'main' ] + branches: ["main"] push: - branches: [ 'main' ] + branches: ["main"] permissions: contents: read @@ -19,12 +19,12 @@ jobs: - name: Mount bazel caches uses: actions/cache@v4 with: - path: | - ~/.cache/bazel-repo - key: bazel-cache-deps-ci1-${{ github.sha }} - restore-keys: | - bazel-cache-deps-ci1-${{ github.sha }} - bazel-cache-deps-ci1- + path: | + ~/.cache/bazel-repo + key: bazel-cache-deps-ci1-${{ github.sha }} + restore-keys: | + bazel-cache-deps-ci1-${{ github.sha }} + bazel-cache-deps-ci1- - name: Free space run: | sudo apt-get remove -y '^dotnet-.*' @@ -51,18 +51,18 @@ jobs: ci-images: name: CI image tests - runs-on: ubuntu-20.04 # most compatible with debian 11 + runs-on: distroless-ci-large-ubuntu-20.04 # most compatible with debian 11 steps: - uses: actions/checkout@v4 - name: Mount bazel caches uses: actions/cache@v4 with: - path: | - ~/.cache/bazel-repo - key: bazel-cache-deps-ci2-${{ github.sha }} - restore-keys: | - bazel-cache-deps-ci2-${{ github.sha }} - bazel-cache-deps-ci2- + path: | + ~/.cache/bazel-repo + key: bazel-cache-deps-ci2-${{ github.sha }} + restore-keys: | + bazel-cache-deps-ci2-${{ github.sha }} + bazel-cache-deps-ci2- - name: Free space run: | sudo apt-get remove -y '^dotnet-.*' diff --git a/WORKSPACE b/WORKSPACE index d5e08685b..b570a4916 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -6,8 +6,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_oci", # ssha256 = "d8d3e64a814ff76f59b29467a8760112cbfe18e6b3d864e97011b072c805b7b0", - strip_prefix = "rules_oci-42be2648051e78a76cc400490150368a58fbec28", - url = "https://github.com/bazel-contrib/rules_oci/archive/42be2648051e78a76cc400490150368a58fbec28.tar.gz", + strip_prefix = "rules_oci-1f93e493dc5b620f7ebcaedf1c5766cd7f39a9b8", + url = "https://github.com/bazel-contrib/rules_oci/archive/1f93e493dc5b620f7ebcaedf1c5766cd7f39a9b8.tar.gz", ) load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies")