Skip to content

Commit 207a32c

Browse files
build(deps): bump actions/checkout from 5.0.0 to 5.0.1 (#3878)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c7b376a commit 207a32c

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/build-next.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
build:
2727
runs-on: ubuntu-22.04
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v5.0.1
3030

3131
- uses: pnpm/action-setup@v4
3232
name: Install pnpm

.github/workflows/compute-model-sizes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
# Steps represent a sequence of tasks that will be executed as part of the job
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v5.0.1
1919
# Runs a single command using the runners shell
2020
- name: Compute model size
2121
run: ./tools/compute-model-sizes.sh

.github/workflows/e2e-main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,21 @@ jobs:
5151
echo "${{ github.event.inputs.ext_repo_options || env.DEFAULT_EXT_REPO_OPTIONS }}" | awk -F ',' \
5252
'{for (i=1; i<=NF; i++) {split($i, kv, "="); print "EXT_"kv[1]"="kv[2]}}' >> $GITHUB_ENV
5353
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v5.0.1
5555
name: Checkout AI Lab - Workflow Dispatch
5656
if: github.event_name == 'workflow_dispatch'
5757
with:
5858
repository: ${{ env.EXT_FORK }}/${{ env.EXT_REPO }}
5959
ref: ${{ env.EXT_BRANCH }}
6060
path: podman-desktop-extension-ai-lab
6161

62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v5.0.1
6363
name: Checkout AI Lab - Push or Schedule
6464
if: github.event_name == 'push' || github.event_name == 'schedule'
6565
with:
6666
path: podman-desktop-extension-ai-lab
6767

68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v5.0.1
6969
name: Checkout Podman Desktop
7070
with:
7171
repository: ${{ env.PD_FORK }}/${{ env.PD_REPO }}

.github/workflows/llama-stack-playground.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: publish
3131
runs-on: ubuntu-24.04
3232
steps:
33-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
33+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd #v5.0.1
3434
with:
3535
repository: meta-llama/llama-stack
3636
ref: ${{ github.event.inputs.version }}

.github/workflows/pr-check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
matrix:
3030
os: [windows-2022, ubuntu-22.04, macos-14]
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v5.0.1
3333

3434
- uses: pnpm/action-setup@v4
3535
name: Install pnpm
@@ -74,7 +74,7 @@ jobs:
7474
env:
7575
SKIP_INSTALLATION: true
7676
steps:
77-
- uses: actions/checkout@v5
77+
- uses: actions/checkout@v5.0.1
7878
with:
7979
path: podman-desktop-extension-ai-lab
8080
# Set up pnpm
@@ -89,7 +89,7 @@ jobs:
8989
node-version: 22
9090

9191
# Checkout podman desktop
92-
- uses: actions/checkout@v5
92+
- uses: actions/checkout@v5.0.1
9393
with:
9494
repository: containers/podman-desktop
9595
ref: main

.github/workflows/ramalama.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
SKIP_INSTALLATION: true
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v5.0.1
4040
with:
4141
path: podman-desktop-extension-ai-lab
4242
# Set up pnpm
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
node-version: 22
5252
# Checkout podman desktop
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v5.0.1
5454
with:
5555
repository: podman-desktop/podman-desktop
5656
ref: main

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
releaseId: ${{ steps.create_release.outputs.id}}
4242

4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v5.0.1
4545
with:
4646
ref: ${{ github.event.inputs.branch }}
4747
- name: Generate tag utilities
@@ -116,7 +116,7 @@ jobs:
116116
needs: [tag]
117117
runs-on: ubuntu-latest
118118
steps:
119-
- uses: actions/checkout@v5
119+
- uses: actions/checkout@v5.0.1
120120
with:
121121
ref: ${{ needs.tag.outputs.githubTag }}
122122

.github/workflows/update-ramalama-references.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
update-references:
3333
runs-on: ubuntu-24.04
3434
steps:
35-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
35+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
3636

3737
- name: Get latest ramalama version
3838
id: get_ramalama_version

0 commit comments

Comments
 (0)