From 66dbfacc982079d4f535c95fc393d74c841b73fb Mon Sep 17 00:00:00 2001 From: kolosovpetro Date: Wed, 3 Jul 2024 16:15:54 +0200 Subject: [PATCH] bump github actions --- .github/workflows/build-and-deploy-pdf.yml | 12 ++++++------ .github/workflows/build-pdf.yml | 14 +++++++------- CHANGELOG.md | 1 + 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-and-deploy-pdf.yml b/.github/workflows/build-and-deploy-pdf.yml index f9453e6..c1bf07d 100644 --- a/.github/workflows/build-and-deploy-pdf.yml +++ b/.github/workflows/build-and-deploy-pdf.yml @@ -16,17 +16,17 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0.9.15 + uses: gittools/actions/gitversion/setup@v1.1.1 with: versionSpec: '5.x' - name: Determine Version - uses: gittools/actions/gitversion/execute@v0.9.15 + uses: gittools/actions/gitversion/execute@v1.1.1 - name: Print SemVer run: | @@ -43,7 +43,7 @@ jobs: sed -i "s|Local-0.1.0|$newVersion|" "src/sections/version.tex" - name: Build PDF - uses: xu-cheng/latex-action@v2 + uses: xu-cheng/latex-action@v3 with: root_file: "${{ env.FILE_NAME }}.tex" working_directory: src @@ -53,7 +53,7 @@ jobs: ls -lsa src - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "${{ env.FILE_NAME }}-${{ env.GitVersion_InformationalVersion }}" path: | @@ -63,7 +63,7 @@ jobs: src/sections - name: Upload artifacts PDF - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "${{ env.FILE_NAME }}-PDF-${{ env.GitVersion_InformationalVersion }}" path: | diff --git a/.github/workflows/build-pdf.yml b/.github/workflows/build-pdf.yml index 89e005f..585daea 100644 --- a/.github/workflows/build-pdf.yml +++ b/.github/workflows/build-pdf.yml @@ -23,17 +23,17 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0.9.15 + uses: gittools/actions/gitversion/setup@v1.1.1 with: versionSpec: '5.x' - name: Determine Version - uses: gittools/actions/gitversion/execute@v0.9.15 + uses: gittools/actions/gitversion/execute@v1.1.1 - name: Print SemVer run: | @@ -50,7 +50,7 @@ jobs: sed -i "s|Local-0.1.0|$newVersion|" "src/sections/version.tex" - name: Build PDF - uses: xu-cheng/latex-action@v2 + uses: xu-cheng/latex-action@v3 with: root_file: "${{ env.FILE_NAME }}.tex" working_directory: src @@ -60,7 +60,7 @@ jobs: ls -lsa src - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "${{ env.FILE_NAME }}-${{ env.GitVersion_InformationalVersion }}" path: | @@ -70,8 +70,8 @@ jobs: src/sections - name: Upload artifacts PDF - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "${{ env.FILE_NAME }}-PDF-${{ env.GitVersion_InformationalVersion }}" path: | - src/${{ env.FILE_NAME }}.pdf \ No newline at end of file + src/${{ env.FILE_NAME }}.pdf diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f7c95a..81cbfae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec - README updated - Theorem environments update - Footnote added +- Bump GitHub Actions version ## [1.1.7] - 2024-01-31 ### Changed