Skip to content

Commit aaa5fd9

Browse files
committed
Update checkout action to v3.
1 parent ca00f9e commit aaa5fd9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-exercises.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
# The build/test steps to execute.
9898
steps:
9999
# Use a standard checkout of the code.
100-
- uses: actions/checkout@v2
100+
- uses: actions/checkout@v3
101101
# Make sure that Python 3 is available to the build.
102102
- uses: actions/setup-python@v2
103103
with:

.github/workflows/build-slides.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
version: [ essentials, full ]
2222
steps:
2323
- name: Set up Git repository
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
- name: Set up essentials course
2626
if: matrix.version == 'essentials'
2727
run: echo '\basictrue' > talk/onlybasics.tex

.github/workflows/publish-slides.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
version: [ essentials, full ]
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Setup essentials course
1818
if: matrix.version == 'essentials'
1919
run: echo '\basictrue' > talk/onlybasics.tex

0 commit comments

Comments
 (0)