Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/upload-artifact
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.6.1
Choose a base ref
...
head repository: actions/upload-artifact
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.6.2
Choose a head ref
  • 2 commits
  • 6 files changed
  • 2 contributors

Commits on Mar 19, 2025

  1. Prepare for new release of actions/upload-artifact with new toolkit c…

    …ache version
    salmanmkc committed Mar 19, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    0839620 View commit details
  2. Merge pull request #685 from salmanmkc/salmanmkc/3-new-upload-artifac…

    …ts-release
    
    Update to use artifact 2.3.2 package & prepare for new upload-artifact release
    yacaovsnc authored Mar 19, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    ea165f8 View commit details
Showing with 811 additions and 70 deletions.
  1. +1 −1 .licenses/npm/@actions/artifact.dep.yml
  2. +36 −0 .vscode/launch.json
  3. +381 −29 dist/merge/index.js
  4. +381 −29 dist/upload/index.js
  5. +10 −9 package-lock.json
  6. +2 −2 package.json
2 changes: 1 addition & 1 deletion .licenses/npm/@actions/artifact.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Jest Tests",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--testTimeout",
"10000"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
},
{
"type": "node",
"request": "launch",
"name": "Debug Current Test File",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--testTimeout",
"10000",
"${relativeFile}"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
}
]
}
Loading