Skip to content

Commit 8bf0223

Browse files
barucdenmortenpi
andauthored
Update actions/{cache,checkout,upload-artifact} (#29)
* Update `actions/cache` and `actions/checkout` * Update `actions/upload-artifacts` * Create dependabot.yml --------- Co-authored-by: Morten Piibeleht <[email protected]>
1 parent 1e3c5d7 commit 8bf0223

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"

.github/workflows/PDFs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
JULIA_SOURCE: ${{ github.workspace }}/pdf/build/julia
2424
JULIA_DOCS: ${{ github.workspace }}/pdf/build/docs.julialang.org
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727
- uses: julia-actions/setup-julia@v1
2828
with:
2929
version: 1
3030
show-versioninfo: true
31-
- uses: actions/cache@v1
31+
- uses: actions/cache@v4
3232
env:
3333
cache-name: cache-artifacts
3434
with:
@@ -45,7 +45,7 @@ jobs:
4545
- run: julia --color=yes pdf/make.jl ${{ matrix.buildtype }}
4646
env:
4747
DOCUMENTER_LATEX_DEBUG: ${{ github.workspace }}/latex-debug-logs
48-
- uses: actions/upload-artifact@v3
48+
- uses: actions/upload-artifact@v4
4949
if: ${{ always() }}
5050
with:
5151
name: "LaTeX source and logs (${{ matrix.buildtype }})"

0 commit comments

Comments
 (0)