From 4c1666b86d3e84abe6cd2bcc450a5e14b4963771 Mon Sep 17 00:00:00 2001 From: David Marshall Date: Tue, 10 Sep 2024 15:24:01 -0700 Subject: [PATCH] Update build-and-publish.yml Addressing workflow warnings about deprecated commands and workflows. --- .github/workflows/build-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 76f18c7..35fa9e8 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -20,11 +20,11 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Get current date id: date - run: echo "::set-output name=date::$(date +'%Y-%m-%d')" + run: echo "name=date::$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT # Runs a set of commands using the runners shell - name: Install LaTex Dependencies