From f918f53df93c6cc8e1cf9d714263e2db0421e596 Mon Sep 17 00:00:00 2001 From: Mike Fuller Date: Wed, 18 Dec 2024 21:41:42 +1100 Subject: [PATCH 1/2] 670 actions deprecation Bump version of github actions used in Actions pipelines. Both actions/checkout@v3 and actions/upload-artifact@v3.1.2 need to be updated to v4. Testing on forked repo it appears this is safe for us to perform. Signed-off-by: Mike Fuller --- .github/workflows/candidate_release.yml | 4 ++-- .github/workflows/main.yml | 4 ++-- .github/workflows/working_draft.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/candidate_release.yml b/.github/workflows/candidate_release.yml index cb3e69939..29302a0c8 100644 --- a/.github/workflows/candidate_release.yml +++ b/.github/workflows/candidate_release.yml @@ -12,7 +12,7 @@ jobs: image: pandoc/extra:latest-ubuntu steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install prequirements shell: bash run: | @@ -27,7 +27,7 @@ jobs: run: | make STYLE=candidate_release - name: Upload Spec - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4 with: name: FOCUS_specification path: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3de84c958..a8cf6a8de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: image: pandoc/extra:latest-ubuntu steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install prequirements shell: bash run: | @@ -27,7 +27,7 @@ jobs: run: | make STYLE=main - name: Upload Spec - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4 with: name: FOCUS_specification path: | diff --git a/.github/workflows/working_draft.yml b/.github/workflows/working_draft.yml index 0e446d759..32bd8d6ca 100644 --- a/.github/workflows/working_draft.yml +++ b/.github/workflows/working_draft.yml @@ -14,7 +14,7 @@ jobs: image: pandoc/extra:latest-ubuntu steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install prequirements shell: bash run: | @@ -29,7 +29,7 @@ jobs: run: | make STYLE=working_draft - name: Upload Spec - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4 with: name: FOCUS_specification path: | From ae72467bb655fd4551a6aad9e5069eb16b93c781 Mon Sep 17 00:00:00 2001 From: Mike Fuller Date: Tue, 31 Dec 2024 07:42:47 +1100 Subject: [PATCH 2/2] updated to latest minor releases of github actions. --- .github/workflows/candidate_release.yml | 4 ++-- .github/workflows/main.yml | 4 ++-- .github/workflows/working_draft.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/candidate_release.yml b/.github/workflows/candidate_release.yml index 29302a0c8..832c2f349 100644 --- a/.github/workflows/candidate_release.yml +++ b/.github/workflows/candidate_release.yml @@ -12,7 +12,7 @@ jobs: image: pandoc/extra:latest-ubuntu steps: - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v4.2.2 - name: Install prequirements shell: bash run: | @@ -27,7 +27,7 @@ jobs: run: | make STYLE=candidate_release - name: Upload Spec - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.5.0 with: name: FOCUS_specification path: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a8cf6a8de..f275fb772 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: image: pandoc/extra:latest-ubuntu steps: - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v4.2.2 - name: Install prequirements shell: bash run: | @@ -27,7 +27,7 @@ jobs: run: | make STYLE=main - name: Upload Spec - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.5.0 with: name: FOCUS_specification path: | diff --git a/.github/workflows/working_draft.yml b/.github/workflows/working_draft.yml index 32bd8d6ca..9b4bb3ad3 100644 --- a/.github/workflows/working_draft.yml +++ b/.github/workflows/working_draft.yml @@ -14,7 +14,7 @@ jobs: image: pandoc/extra:latest-ubuntu steps: - name: Check out repository code - uses: actions/checkout@v4 + uses: actions/checkout@v4.2.2 - name: Install prequirements shell: bash run: | @@ -29,7 +29,7 @@ jobs: run: | make STYLE=working_draft - name: Upload Spec - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.5.0 with: name: FOCUS_specification path: |