Merge pull request #30 from actions/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
This commit is contained in:
@@ -35,7 +35,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
id: checkout
|
id: checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
ref: main
|
ref: main
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
id: checkout
|
id: checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Setup Docker BuildX
|
- name: Setup Docker BuildX
|
||||||
id: setup-buildx
|
id: setup-buildx
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
id: checkout
|
id: checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
@@ -38,4 +38,6 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
LINTER_RULES_PATH: ${{ github.workspace }}
|
LINTER_RULES_PATH: ${{ github.workspace }}
|
||||||
VALIDATE_ALL_CODEBASE: false
|
VALIDATE_ALL_CODEBASE: false
|
||||||
|
VALIDATE_BIOME_FORMAT: false
|
||||||
|
VALIDATE_BIOME_LINT: false
|
||||||
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
|
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
id: checkout
|
id: checkout
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
|
|
||||||
|
|||||||
@@ -7,5 +7,12 @@ WORKDIR /usr/src
|
|||||||
# Copy any source file(s) required for the action.
|
# Copy any source file(s) required for the action.
|
||||||
COPY entrypoint.sh .
|
COPY entrypoint.sh .
|
||||||
|
|
||||||
|
# Create a non-root user and switch to it.
|
||||||
|
RUN addgroup -S actiongroup && adduser -S actionuser -G actiongroup && \
|
||||||
|
chown -R actionuser:actiongroup /usr/src && \
|
||||||
|
chmod +x /usr/src/entrypoint.sh
|
||||||
|
|
||||||
|
USER actionuser
|
||||||
|
|
||||||
# Configure the container to be run as an executable.
|
# Configure the container to be run as an executable.
|
||||||
ENTRYPOINT ["/usr/src/entrypoint.sh"]
|
ENTRYPOINT ["/usr/src/entrypoint.sh"]
|
||||||
|
|||||||
Reference in New Issue
Block a user