Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#[patch] allowlist for rust-ci #111

Merged
merged 4 commits into from
Dec 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
build-and-deploy:
if: ${{ inputs.build-lambda || inputs.deploy-lambda }}
runs-on: ${{ inputs.runs-on }}
needs: build
needs: [build, tests, clippy]
defaults:
run:
working-directory: ${{ inputs.working-directory }}
Expand All @@ -158,7 +158,10 @@ jobs:
api.github.com:443
github.com:443
index.crates.io:443
lambda.eu-west-1.amazonaws.com:443
static.crates.io:443
sts.eu-west-1.amazonaws.com:443
zig.linus.dev:443
${{ inputs.egress-policy-allowlist }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
# v4.2.2
Expand All @@ -171,10 +174,11 @@ jobs:
aws-region: ${{ inputs.aws-region }}
retry-max-attempts: 2
- name: Install Zig toolchain
uses: step-security/setup-zig@90c09b881091fd60164bbaa108febaa7ff25f962
uses: mlugg/setup-zig@a67e68dc5c8281d9608136d3d7ca1b282213e4ac
# v1.2.1
with:
version: latest
mirror: https://zig.linus.dev/zig
- name: Install Cargo Lambda
uses: jaxxstorm/action-install-gh-release@cd6b2b78ad38bdd294341cda064ec0692b06215b
# v1.14.0
Expand Down
Loading