Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/add-issues-to-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v1.0.2
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
with:
project-url: https://github.com/orgs/famedly/projects/50
github-token: ${{ secrets.ADD_ISSUE_TO_PROJECT_PAT }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runner: arm-ubuntu-latest-8core
asset_name: ${{ github.event.repository.name }}-linux-aarch64-latest
runs-on: ${{ matrix.runner }}
container: registry.famedly.net/docker-oss/rust-container:nightly
container: registry.famedly.net/docker-oss/rust-container:nightly@sha256:6a220ab01ebce4e992acb6acf767e769cf1b99a738b0c8af701765aa9a334dd0
steps:
- name: Checkout code
uses: actions/checkout@900f2210b1d28bbbd0bd22d17926b9e224e8f231
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
contents: read
attestations: write
runs-on: ubuntu-latest
container: registry.famedly.net/docker-oss/rust-container:nightly
container: registry.famedly.net/docker-oss/rust-container:nightly@sha256:6a220ab01ebce4e992acb6acf767e769cf1b99a738b0c8af701765aa9a334dd0
steps:
- name: Checkout code
uses: actions/checkout@900f2210b1d28bbbd0bd22d17926b9e224e8f231
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ concurrency:
# Defined CI jobs.
jobs:
simple-checks:
container: registry.famedly.net/docker-oss/rust-container:nightly
container: registry.famedly.net/docker-oss/rust-container:nightly@sha256:6a220ab01ebce4e992acb6acf767e769cf1b99a738b0c8af701765aa9a334dd0
runs-on: ubuntu-latest
steps:
- name: Checkout current repository
uses: actions/checkout@900f2210b1d28bbbd0bd22d17926b9e224e8f231

- uses: famedly/backend-build-workflows/.github/actions/rust-prepare@main
- uses: famedly/backend-build-workflows/.github/actions/rust-prepare@40815a109c3c3cd664c1be5baf4cac287043b953 # main
with:
gitlab_ssh: ${{ secrets.CI_SSH_PRIVATE_KEY}}
gitlab_user: ${{ secrets.GITLAB_USER }}
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Checkout current repository
uses: actions/checkout@900f2210b1d28bbbd0bd22d17926b9e224e8f231

- uses: famedly/backend-build-workflows/.github/actions/rust-prepare@main
- uses: famedly/backend-build-workflows/.github/actions/rust-prepare@40815a109c3c3cd664c1be5baf4cac287043b953 # main

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mismatched rust-prepare action commits

Medium Severity

This PR pins famedly/backend-build-workflows/.github/actions/rust-prepare to 40815a1 in rust-workflow.yml, while release.yml still uses fcc2ec82 for the same action. PR and main CI can pass with one Rust/registry setup while tagged release and SBOM jobs use another, so release artifacts may fail or differ from what CI validated after the dependency bumps.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9513090. Configure here.

with:
gitlab_ssh: ${{ secrets.CI_SSH_PRIVATE_KEY}}
gitlab_user: ${{ secrets.GITLAB_USER }}
Expand Down
Loading
Loading