Compare commits

...

4 Commits

Author SHA1 Message Date
Tom Hu
18283e04ce chore(release): 5.4.3 (#1827) 2025-05-15 13:38:33 -07:00
dependabot[bot]
525fcbf8a0 build(deps): bump github/codeql-action from 3.28.13 to 3.28.17 (#1822)
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.28.13 to 3.28.17.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v3.28.13...v3.28.17)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-version: 3.28.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-05-15 09:50:31 -07:00
joseph-sentry
b203f00e21 fix: OIDC on forks (#1823) 2025-05-14 12:00:29 -04:00
Tom Hu
ad3126e916 fix: hotfix oidc (#1813) 2025-04-14 13:01:35 -07:00
5 changed files with 28 additions and 8 deletions

View File

@@ -41,7 +41,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3.28.13
uses: github/codeql-action/init@v3.28.17
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -52,7 +52,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3.28.13
uses: github/codeql-action/autobuild@v3.28.17
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
@@ -66,4 +66,4 @@ jobs:
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3.28.13
uses: github/codeql-action/analyze@v3.28.17

View File

@@ -57,6 +57,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@v3.28.13 # v1.0.26
uses: github/codeql-action/upload-sarif@v3.28.17 # v1.0.26
with:
sarif_file: results.sarif

View File

@@ -1,3 +1,21 @@
## v5.4.3
### What's Changed
* build(deps): bump github/codeql-action from 3.28.13 to 3.28.17 by @app/dependabot in https://github.com/codecov/codecov-action/pull/1822
* fix: OIDC on forks by @joseph-sentry in https://github.com/codecov/codecov-action/pull/1823
**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3
## v5.4.2
### What's Changed
**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.4.1..v5.4.2
## v5.4.1
### What's Changed

View File

@@ -203,15 +203,17 @@ runs:
GITHUB_REPOSITORY: ${{ github.repository }}
- name: Get OIDC token
if: ${{ inputs.use_oidc }}
uses: actions/github-script@v7
id: oidc
with:
script: |
const id_token = await core.getIDToken(process.env.CC_OIDC_AUDIENCE)
return id_token
if (process.env.CC_USE_OIDC === 'true' && process.env.CC_FORK != 'true') {
const id_token = await core.getIDToken(process.env.CC_OIDC_AUDIENCE)
return id_token
}
env:
CC_OIDC_AUDIENCE: ${{ inputs.url || 'https://codecov.io' }}
CC_USE_OIDC: ${{ inputs.use_oidc }}
- name: Get and set token
shell: bash

View File

@@ -1 +1 @@
5.4.1
5.4.3