Skip to content

Commit 622a53c

Browse files
authored
chore: update checkout action (#47)
1 parent 7326523 commit 622a53c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/update-on-new-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
- name: Get release tag
2525
run: echo "NEW_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
2626
- name: Checkout repo to be updated
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828
with:
2929
repository: ${{ matrix.repo.name }}
3030
ref: ${{ matrix.repo.ref }}
3131
fetch-depth: 1
3232
- name: Checkout renku-actions repo
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434
with:
3535
fetch-depth: 1
3636
path: .actions-repo

deploy-renku/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ deploy-pr:
1919
environment:
2020
name: ci-renku-${{ github.event.number }}
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: renku build and deploy
2424
if: needs.check-deploy.outputs.pr-contains-string == 'true'
2525
uses: SwissDataScienceCenter/renku-actions/[email protected]

publish-chart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It can simply be used as a step in a GitHub actions job:
88

99
```yaml
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
with:
1313
fetch-depth: 0
1414
- uses: SwissDataScienceCenter/renku/actions/publish-chart@master

rollout-renku-version/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It can simply be used as a step in a GitHub actions job:
88

99
```yaml
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
with:
1313
fetch-depth: 0
1414
- uses: SwissDataScienceCenter/renku/actions/rollout-renku-deployment@master

update-component-version/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It can simply be used as a step in a GitHub actions job:
99

1010
```yaml
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
with:
1414
fetch-depth: 0
1515
- uses: SwissDataScienceCenter/renku/actions/update-component-version@master

0 commit comments

Comments
 (0)