From 53827fcc0042f7a0913b3fdebdacdc1c46cf90b1 Mon Sep 17 00:00:00 2001 From: w-bonelli Date: Fri, 19 Sep 2025 22:55:09 -0400 Subject: [PATCH 1/2] ci: pin 3rd party action dependencies, setup dependabot --- .github/dependabot.yml | 7 +++++++ action.yml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..82618bb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" # Location of package manifests + schedule: + interval: "daily" diff --git a/action.yml b/action.yml index fc06250..2ae282a 100644 --- a/action.yml +++ b/action.yml @@ -58,7 +58,7 @@ runs: else echo "install=true" >> $GITHUB_OUTPUT fi - - uses: mamba-org/setup-micromamba@v1 + - uses: mamba-org/setup-micromamba@v2.0.6 if: runner.os == 'macOS' && contains(inputs.compiler, 'lfortran') && steps.check-umamba.outputs.install == 'true' with: init-shell: bash @@ -140,4 +140,4 @@ runs: - name: Setup MSVC toolchain (Windows) if: runner.os == 'Windows' && contains(inputs.compiler, 'lfortran') - uses: ilammy/msvc-dev-cmd@v1 + uses: ilammy/msvc-dev-cmd@v1.13.0 From 902bd21516654c37a9e5c9eac4cacaad05c68dca Mon Sep 17 00:00:00 2001 From: w-bonelli Date: Fri, 19 Sep 2025 23:00:09 -0400 Subject: [PATCH 2/2] patch readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 85386eb..f82bcdf 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ jobs: exclude: - os: macos-latest toolchain: {compiler: intel} + - os: macos-latest + toolchain: {compiler: intel-classic} - os: macos-latest toolchain: {compiler: nvidia-hpc} - os: windows-latest