Skip to content

Commit c1fc95c

Browse files
committed
feat(cargo): Update Cargo and actions
1 parent 1b01a1b commit c1fc95c

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

Cargo.lock

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[package]
22
name = "codeql-extractor-action"
3+
description = "GitHub Action for CodeQL Extractors"
34
version = "0.1.0"
4-
edition = "2021"
5+
6+
license = "MIT"
7+
8+
edition = "2024"
9+
rust-version = "1.85"
10+
11+
publish = false
512

613
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
714

@@ -17,3 +24,4 @@ ghactions = { version = "^0.14.1", features = ["dotenvy", "log", "generate", "oc
1724
ghastoolkit = "0.5"
1825
# GitHub API
1926
octocrab = "0.43"
27+
openssl = { version = "0.10", features = ["vendored"] }

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ inputs:
1414
outputs: {}
1515
runs:
1616
using: docker
17-
image: ./container/action.Dockerfile
17+
image: ./action.Dockerfile

src/action.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use anyhow::Result;
22
use ghactions::prelude::*;
33
use ghastoolkit::Repository;
44

5+
/// This action is for 3rd party CodeQL extractors to be used in GitHub Actions
56
#[derive(Actions, Debug, Clone)]
67
#[action(
78
// Name of the Action
@@ -11,7 +12,7 @@ use ghastoolkit::Repository;
1112
// Path to the action.yml file
1213
path = "./action.yml",
1314
// Path to the Dockerfile
14-
image = "./container/action.Dockerfile",
15+
image = "./action.Dockerfile",
1516
1617
icon = "shield",
1718
color = "blue",

0 commit comments

Comments
 (0)