From 8b7a6dc967fba89b4db6d6cdf459b83115b68271 Mon Sep 17 00:00:00 2001 From: Harold Sun Date: Mon, 10 Mar 2025 10:03:53 +0000 Subject: [PATCH 1/3] Upgrade rustsec/audit-check action to v2.0.0 --- .github/workflows/security_audit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/security_audit.yaml b/.github/workflows/security_audit.yaml index 323e7469..2c4d4441 100644 --- a/.github/workflows/security_audit.yaml +++ b/.github/workflows/security_audit.yaml @@ -7,6 +7,6 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - - uses: rustsec/audit-check@v1.4.1 + - uses: rustsec/audit-check@v2.0.0 with: token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From df6bde77063b8b618eb2befb736e04eff6609b83 Mon Sep 17 00:00:00 2001 From: Harold Sun Date: Sun, 20 Apr 2025 05:06:52 +0000 Subject: [PATCH 2/3] update runner instance --- .github/workflows/security_audit.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/security_audit.yaml b/.github/workflows/security_audit.yaml index 2c4d4441..3cf85847 100644 --- a/.github/workflows/security_audit.yaml +++ b/.github/workflows/security_audit.yaml @@ -4,9 +4,9 @@ on: - cron: '0 0 * * *' jobs: audit: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: rustsec/audit-check@v2.0.0 with: token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 3d7fe96315fdcbbb3858325f9b76e86e65aa0fa5 Mon Sep 17 00:00:00 2001 From: Harold Sun Date: Sun, 20 Apr 2025 05:15:48 +0000 Subject: [PATCH 3/3] Use ubuntu-24.04 for runner os --- .github/workflows/security_audit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/security_audit.yaml b/.github/workflows/security_audit.yaml index 3cf85847..a43aaa8c 100644 --- a/.github/workflows/security_audit.yaml +++ b/.github/workflows/security_audit.yaml @@ -4,7 +4,7 @@ on: - cron: '0 0 * * *' jobs: audit: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: rustsec/audit-check@v2.0.0