Skip to content

Commit

Permalink
Change master to main (last change commited 4 years ago) for actions/…
Browse files Browse the repository at this point in the history
…{checkout,upload-artifact}
  • Loading branch information
carlosal1015 authored Aug 20, 2024
1 parent 9d328ae commit 0e22e80
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builder_github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
status: building
workflow: ${{ github.run_id }}

- uses: actions/checkout@master
- uses: actions/checkout@main
with:
repository: ${{ steps.config.outputs.github_repository }}
path: repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builder_github_actions_unsafe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
status: building
workflow: ${{ github.run_id }}

- uses: actions/checkout@master
- uses: actions/checkout@main
with:
repository: ${{ steps.config.outputs.github_repository }}
path: repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builder_self_hosted_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
status: building
workflow: ${{ github.run_id }}

- uses: actions/checkout@master
- uses: actions/checkout@main
with:
repository: ${{ steps.config.outputs.github_repository }}
path: repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builder_self_hosted_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
status: building
workflow: ${{ github.run_id }}

- uses: actions/checkout@master
- uses: actions/checkout@main
with:
repository: ${{ steps.config.outputs.github_repository }}
path: repository
Expand Down
4 changes: 2 additions & 2 deletions actions/config-pacman-repository/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
repository: ${{ inputs.keyring-repository }}
path: keyring

- uses: actions/checkout@master
- uses: actions/checkout@main
with:
repository: ${{ inputs.mirrorlist-repository }}
path: mirrorlist
Expand Down
4 changes: 2 additions & 2 deletions actions/setup-cactus/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ runs:
python-tornado \
python-yaml
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
path: cactus

- uses: actions/checkout@master
- uses: actions/checkout@main
with:
repository: petronny/djangorm
path: djangorm
2 changes: 1 addition & 1 deletion actions/upload-log/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
shell: bash -e {0}
run: echo "basename=$(basename ${{ inputs.pkgbase }})" >> $GITHUB_OUTPUT

- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@main
if: ${{ always() }}
with:
name: ${{ steps.basename.outputs.basename }}.log
Expand Down
2 changes: 1 addition & 1 deletion actions/upload-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
shell: bash -e {0}
run: echo "basename=$(basename ${{ inputs.pkgbase }})" >> $GITHUB_OUTPUT

- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@main
with:
name: ${{ steps.basename.outputs.basename }}.package
path: repository/${{ inputs.pkgbase }}/*.pkg.tar.zst

0 comments on commit 0e22e80

Please sign in to comment.