]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Action: Support running in a docker container (#2748)
authorJosh Owen <josh.owen@flourish.com>
Fri, 7 Jan 2022 16:50:50 +0000 (11:50 -0500)
committerGitHub <noreply@github.com>
Fri, 7 Jan 2022 16:50:50 +0000 (18:50 +0200)
see: https://github.com/actions/runner/issues/716

CHANGES.md
action.yml

index 8bb96bb1f29d2ea9d61a9c038490eb32c9123d00..bfecbb7831d70893248efc013319eba90dede200 100644 (file)
 
 - All upper version bounds on dependencies have been removed (#2718)
 
+### Integrations
+
+- Update GitHub action to support containerized runs (#2748)
+
 ## 21.12b0
 
 ### _Black_
index ddf07933a3e2dd119d40bf4b75a848712db7cb7c..dd2de1b62ad6bc78a6e4a7b6e8182557383c4c21 100644 (file)
@@ -38,7 +38,7 @@ runs:
         import subprocess;
         from pathlib import Path;
 
-        MAIN_SCRIPT = Path(r'${{ github.action_path }}') / 'action' / 'main.py';
+        MAIN_SCRIPT = Path(r'${GITHUB_ACTION_PATH}') / 'action' / 'main.py';
 
         proc = subprocess.run([sys.executable, str(MAIN_SCRIPT)]);
         sys.exit(proc.returncode)