Skip to content

Commit 72e3673

Browse files
authored
Update GitHub Action versions (#348)
Action 'upload-artifact' version 2 has been deprecated, hence the need to update its version. To piggyback on this work, this patch updates all GitHub Action versions to their latest release.
1 parent 487cdbc commit 72e3673

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4.1.7
1414
- name: check the correctness of the sources and generate the PDFs
1515
run: ./build_with_docker.sh
16-
- uses: actions/upload-artifact@v2
16+
- uses: actions/upload-artifact@v4.4.0
1717
with:
1818
name: pdfs
1919
path: pdfs
2020

2121
build-github-pages:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4.1.7
2525
- name: generate the GitHub Pages locally in order to check for errors
2626
run: ./tools/build-github-pages.sh build
2727

2828
markdown-link-check:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@master
31+
- uses: actions/checkout@4.1.7
3232
- uses: gaurav-nelson/github-action-markdown-link-check@v1
3333
with:
3434
config-file: '.github/workflows/markdown-link-check.json'
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
if: github.base_ref == 'main' || github.ref == 'refs/heads/main'
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v4.1.7
4141
with:
4242
fetch-depth: 0
4343
- name: Check correctness of draftversion fields

0 commit comments

Comments
 (0)