Skip to content

Commit b9fb39d

Browse files
renovate[bot]mergify[bot]
authored andcommittedDec 15, 2022
fix(deps): update actions/checkout action to v3.2.0
1 parent 169e4df commit b9fb39d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3.1.0
17+
uses: actions/checkout@v3.2.0
1818
with:
1919
path: action
2020
- name: move the action outside the workspace
@@ -35,7 +35,7 @@ jobs:
3535
if: github.event_name == 'push'
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v3.1.0
38+
uses: actions/checkout@v3.2.0
3939
- name: Install Semantic Release
4040
run: npm install
4141
- name: Release

‎action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ runs:
1010
using: "composite"
1111
steps:
1212
- name: Checkout with custom token
13-
uses: actions/checkout@v3.1.0
13+
uses: actions/checkout@v3.2.0
1414
if: inputs.token != ''
1515
with:
1616
fetch-depth: 0
1717
submodules: recursive
1818
token: ${{ inputs.token }}
1919
- name: Checkout with default token
20-
uses: actions/checkout@v3.1.0
20+
uses: actions/checkout@v3.2.0
2121
if: inputs.token == ''
2222
with:
2323
fetch-depth: 0

0 commit comments

Comments
 (0)
Please sign in to comment.