mirror of
https://github.com/actions/checkout.git
synced 2025-12-08 16:08:35 +08:00
Some checks failed
Check dist / check-dist (push) Failing after 13s
Licensed / Check licenses (push) Failing after 10s
CodeQL / Analyze (javascript) (push) Failing after 13s
Build and Test / test (ubuntu-latest) (push) Failing after 11s
Build and Test / test-proxy (push) Failing after 10s
Build and Test / build (push) Failing after 15s
Build and Test / test-bypass-proxy (push) Failing after 7s
Build and Test / test-git-container (push) Failing after 6s
Build and Test / test-output (push) Failing after 6s
Build and Test / test (macos-latest) (push) Has been cancelled
Build and Test / test (windows-latest) (push) Has been cancelled
- Updated README.md examples to reference @v6 - Updated all workflow files to use actions/checkout@v6
21 lines
375 B
YAML
21 lines
375 B
YAML
name: 'Publish Immutable Action Version'
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checking out
|
|
uses: actions/checkout@v6
|
|
- name: Publish
|
|
id: publish
|
|
uses: actions/publish-immutable-action@0.0.3
|