Skip to content

Commit 2e8b2e1

Browse files
serious-scaffold[bot]huxuan
authored andcommitted
build(deps): update actions/checkout action to v4.1.6
1 parent 8100437 commit 2e8b2e1

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: ${{ !cancelled() && ! failure() }}
1919
runs-on: ${{ matrix.os }}
2020
steps:
21-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
21+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2222
with:
2323
fetch-depth: 0
2424
- uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: ubuntu-22.04
6666
steps:
6767
- run: env | sort
68-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
68+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
6969
- name: Set up Git
7070
run: |
7171
git config --global user.name github-actions
@@ -102,7 +102,7 @@ jobs:
102102
echo "# :warning: GITHUB_TOKEN is used for semantic-release" >> $GITHUB_STEP_SUMMARY
103103
echo "The GITHUB_TOKEN is used instead of a bot token or PAT and will not emit the released publish event for the released workflow." >> $GITHUB_STEP_SUMMARY
104104
fi
105-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
105+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
106106
with:
107107
fetch-depth: 0
108108
persist-credentials: false

.github/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-22.04
1010
steps:
1111
- run: env | sort
12-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
12+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1313
- name: Validate the latest commit message with commitlint
1414
if: github.event_name == 'push'
1515
run: echo "${{ github.event.head_commit.message }}" | npx commitlint

.github/workflows/devcontainer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
packages: write
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
11+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1212
- run: docker login -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} ghcr.io
1313
- run: |
1414
docker context create builder

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pages-build:
1414
runs-on: ubuntu-22.04
1515
steps:
16-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
16+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1717
with:
1818
fetch-depth: 0
1919
- uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
@@ -44,7 +44,7 @@ jobs:
4444
packages: write
4545
runs-on: ubuntu-22.04
4646
steps:
47-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
47+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
4848
- run: docker login -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} ghcr.io
4949
- run: |
5050
docker context create builder
@@ -83,7 +83,7 @@ jobs:
8383
package-publish:
8484
runs-on: ubuntu-22.04
8585
steps:
86-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
86+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
8787
- uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
8888
with:
8989
cache: true

template/[% if repo_platform == 'github' %].github[% endif %]/workflows/ci.yml.jinja

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: {{ '${{ !cancelled() && ! failure() }}' }}
2020
runs-on: {{ '${{ matrix.os }}' }}
2121
steps:
22-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
22+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
2323
with:
2424
fetch-depth: 0
2525
- uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ubuntu-22.04
9494
steps:
9595
- run: env | sort
96-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
96+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
9797
- name: Set up Git
9898
run: |
9999
git config --global user.name github-actions
@@ -133,7 +133,7 @@ jobs:
133133
echo "# :warning: GITHUB_TOKEN is used for semantic-release" >> $GITHUB_STEP_SUMMARY
134134
echo "The GITHUB_TOKEN is used instead of a bot token or PAT and will not emit the released publish event for the released workflow." >> $GITHUB_STEP_SUMMARY
135135
fi
136-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
136+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
137137
with:
138138
fetch-depth: 0
139139
persist-credentials: false

template/[% if repo_platform == 'github' %].github[% endif %]/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-22.04
1010
steps:
1111
- run: env | sort
12-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
12+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1313
- name: Validate the latest commit message with commitlint
1414
if: github.event_name == 'push'
1515
run: echo "${{ github.event.head_commit.message }}" | npx commitlint

template/[% if repo_platform == 'github' %].github[% endif %]/workflows/devcontainer.yml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
packages: write
1010
runs-on: ubuntu-22.04
1111
steps:
12-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
12+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1313
- run: docker login -u {{ '${{ github.actor }}' }} -p {{ '${{ secrets.GITHUB_TOKEN }}' }} ghcr.io
1414
- run: |
1515
docker context create builder

template/[% if repo_platform == 'github' %].github[% endif %]/workflows/release.yml.jinja

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
pages-build:
1515
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
17+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1818
with:
1919
fetch-depth: 0
2020
- uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
@@ -45,7 +45,7 @@ jobs:
4545
packages: write
4646
runs-on: ubuntu-22.04
4747
steps:
48-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
48+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
4949
- run: docker login -u {{ '${{ github.actor }}' }} -p {{ '${{ secrets.GITHUB_TOKEN }}' }} ghcr.io
5050
- run: |
5151
docker context create builder
@@ -94,7 +94,7 @@ jobs:
9494
package-publish:
9595
runs-on: ubuntu-22.04
9696
steps:
97-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
97+
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
9898
- uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
9999
with:
100100
cache: true

0 commit comments

Comments
 (0)