Skip to content

Commit 95629da

Browse files
committed
Enabling cache for pip
1 parent c2f7e70 commit 95629da

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/python-uppercase.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ jobs:
2020
- name: List files in current directory
2121
run: ls -la
2222

23+
- name: Configure cache for pip
24+
uses: actions/cache@v4
25+
with:
26+
path: ~/.cache/pip
27+
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
28+
restore-keys: |
29+
${{ runner.os }}-pip-
30+
2331
- name: Checkout repository
2432
uses: actions/checkout@v4
2533

dotnetwebapp/MyWebApp/obj/Debug/net8.0/MyWebApp.AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: System.Reflection.AssemblyCompanyAttribute("MyWebApp")]
1414
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1515
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5a2b5064cd2cdc49dc1512a44f584566cd888d02")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c2f7e7032c92123f7d5bed272516c0da2769ce50")]
1717
[assembly: System.Reflection.AssemblyProductAttribute("MyWebApp")]
1818
[assembly: System.Reflection.AssemblyTitleAttribute("MyWebApp")]
1919
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b03fa4f757ace5b675c4743f7cd7347c02a1e911e25f2e548afe9f0737654aa0
1+
01e21fbe25ad75eeb331f322b41f72c6304f045c0dc32ba4fc93878fb8bed33f

0 commit comments

Comments
 (0)