<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How To Pass Data Between Workflows in GitHub Actions?	</title>
	<atom:link href="https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/</link>
	<description>Kotlin &#38; Backend Tutorials - Learn Through Practice.</description>
	<lastBuildDate>Wed, 07 May 2025 21:22:43 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Jack Crow		</title>
		<link>https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/#comment-149</link>

		<dc:creator><![CDATA[Jack Crow]]></dc:creator>
		<pubDate>Wed, 07 May 2025 21:22:43 +0000</pubDate>
		<guid isPermaLink="false">https://codersee.com/?p=9007722#comment-149</guid>

					<description><![CDATA[This was not helpful at all. This is an example of encoding into a file, which then had to be read back out. It&#039;s a convoluted way to pass data.]]></description>
			<content:encoded><![CDATA[<p>This was not helpful at all. This is an example of encoding into a file, which then had to be read back out. It&#8217;s a convoluted way to pass data.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: zomars		</title>
		<link>https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/#comment-89</link>

		<dc:creator><![CDATA[zomars]]></dc:creator>
		<pubDate>Tue, 15 Oct 2024 21:33:15 +0000</pubDate>
		<guid isPermaLink="false">https://codersee.com/?p=9007722#comment-89</guid>

					<description><![CDATA[You&#039;re a life saver. It&#039;s incredible how little info is about this.]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re a life saver. It&#8217;s incredible how little info is about this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Fred		</title>
		<link>https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/#comment-88</link>

		<dc:creator><![CDATA[Fred]]></dc:creator>
		<pubDate>Wed, 14 Aug 2024 22:47:15 +0000</pubDate>
		<guid isPermaLink="false">https://codersee.com/?p=9007722#comment-88</guid>

					<description><![CDATA[Hi Piotr,

How to read a version from workflow A and use it to update version in workflow B?
Great article.

Fred]]></description>
			<content:encoded><![CDATA[<p>Hi Piotr,</p>
<p>How to read a version from workflow A and use it to update version in workflow B?<br />
Great article.</p>
<p>Fred</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Piotr		</title>
		<link>https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/#comment-87</link>

		<dc:creator><![CDATA[Piotr]]></dc:creator>
		<pubDate>Thu, 01 Feb 2024 08:10:31 +0000</pubDate>
		<guid isPermaLink="false">https://codersee.com/?p=9007722#comment-87</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/#comment-86&quot;&gt;Søren Panduro&lt;/a&gt;.

Hi man! 

You&#039;re right! The V4 version is quite new (mid of December) and introduced downloading artifacts from other workflow runs. 

&quot;Artifacts can be downloaded from other workflow runs and repositories when supplied with a PAT&quot; 

And I didn&#039;t have too much time to update this setup.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/#comment-86">Søren Panduro</a>.</p>
<p>Hi man! </p>
<p>You&#8217;re right! The V4 version is quite new (mid of December) and introduced downloading artifacts from other workflow runs. </p>
<p>&#8220;Artifacts can be downloaded from other workflow runs and repositories when supplied with a PAT&#8221; </p>
<p>And I didn&#8217;t have too much time to update this setup.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Søren Panduro		</title>
		<link>https://blog.codersee.com/how-to-pass-data-between-workflows-in-github-actions/#comment-86</link>

		<dc:creator><![CDATA[Søren Panduro]]></dc:creator>
		<pubDate>Wed, 31 Jan 2024 13:46:16 +0000</pubDate>
		<guid isPermaLink="false">https://codersee.com/?p=9007722#comment-86</guid>

					<description><![CDATA[Hi Piotr!
Nice article.
Lately there is a download action v4, which would make the &quot;Download artifact&quot; step of download_context_artifact way more simple:
```
    - name: Download Artifact
      uses: actions/download-artifact@v4
      with:
#        name: [artifact name] # If specified, files will be extracted to the root folder!
        github-token: ${{ secrets.GITHUB_TOKEN }} 
        run-id: ${{ github.event.workflow_run.id }}
```
I am new to Github actions - so I am not sure if this is a new-new setup - or if there is any reason NOT to use this setup though!]]></description>
			<content:encoded><![CDATA[<p>Hi Piotr!<br />
Nice article.<br />
Lately there is a download action v4, which would make the &#8220;Download artifact&#8221; step of download_context_artifact way more simple:<br />
&#8220;`<br />
    &#8211; name: Download Artifact<br />
      uses: actions/download-artifact@v4<br />
      with:<br />
#        name: [artifact name] # If specified, files will be extracted to the root folder!<br />
        github-token: ${{ secrets.GITHUB_TOKEN }}<br />
        run-id: ${{ github.event.workflow_run.id }}<br />
&#8220;`<br />
I am new to Github actions &#8211; so I am not sure if this is a new-new setup &#8211; or if there is any reason NOT to use this setup though!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: blog.codersee.com @ 2026-05-11 13:29:02 by W3 Total Cache
-->