ocaml/0013-Merge-pull-request-12285-from-smorimoto-update-depre.patch
Richard W.M. Jones 772b17b666 Drop downstream 0017-configure-Only-use-OC_-for-building-executables.patch
This is no longer needed now we found another way to work around build
notes breakage.
2023-07-11 17:46:39 +01:00

71 lines
2.1 KiB
Diff

From 4cc4eb8b0d71c64c5252d6764f4c4b0aa6020995 Mon Sep 17 00:00:00 2001
From: David Allsopp <david.allsopp@metastack.com>
Date: Sat, 3 Jun 2023 18:02:24 +0100
Subject: [PATCH 13/17] Merge pull request #12285 from
smorimoto/update-deprecated-actions
Update deprecated GitHub Actions
(cherry picked from commit eadb05a504e0738f246a7dc846a442793005a27a)
---
.github/workflows/build.yml | 8 ++++----
.github/workflows/hygiene.yml | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ae0fcace20..933c14a926 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -18,7 +18,7 @@ jobs:
manual_changed: ${{ steps.manual.outputs.manual_changed }}
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Check for manual changes
id: manual
run: >-
@@ -45,7 +45,7 @@ jobs:
git config --local --unset http.https://github.com/.extraheader
tar --zstd -cf /tmp/sources.tar.zstd .
- name: Upload Artifact
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: compiler
path: /tmp/sources.tar.zstd
@@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download Artifact
- uses: actions/download-artifact@v2
+ uses: actions/download-artifact@v3
with:
name: compiler
- name: Unpack Artifact
@@ -137,7 +137,7 @@ jobs:
- debug-s4096
steps:
- name: Download artifact
- uses: actions/download-artifact@v2
+ uses: actions/download-artifact@v3
with:
name: compiler
- name: Unpack Artifact
diff --git a/.github/workflows/hygiene.yml b/.github/workflows/hygiene.yml
index e89efd2f47..3b2e10795f 100644
--- a/.github/workflows/hygiene.yml
+++ b/.github/workflows/hygiene.yml
@@ -17,7 +17,7 @@ jobs:
# context variable.
if: failure()
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 50
--
2.41.0